trying to work around npe in androids xml parser

iNPUTmice created

Change summary

src/eu/siacs/conversations/xml/XmlReader.java | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

Detailed changes

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

@@ -54,7 +54,7 @@ public class XmlReader {
 			try { wakeLock.release();} catch (RuntimeException re) {}
 		}
 		try {
-			while(parser.next() != XmlPullParser.END_DOCUMENT) {
+			while(parser.next() != XmlPullParser.END_DOCUMENT && this.is != null) {
 					wakeLock.acquire();
 					if (parser.getEventType() == XmlPullParser.START_TAG) {
 						Tag tag = Tag.start(parser.getName());
@@ -81,8 +81,6 @@ 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;
 	}