more xmlpullparser fixes

iNPUTmice created

Change summary

src/eu/siacs/conversations/xml/XmlReader.java | 2 ++
1 file changed, 2 insertions(+)

Detailed changes

src/eu/siacs/conversations/xml/XmlReader.java 🔗

@@ -81,6 +81,8 @@ public class XmlReader {
 			throw new IOException("xml parser mishandled ArrayIndexOufOfBounds", e);
 		} catch (StringIndexOutOfBoundsException e) {
 			throw new IOException("xml parser mishandled StringIndexOufOfBounds", e);
+		} catch (NullPointerException e) {
+			throw new IOException("null pointer in xml parser");
 		}
 		return null;
 	}