From 0e93e5ce52e7ca9a00b5c6f8fe6931ce3eb6f05c Mon Sep 17 00:00:00 2001 From: iNPUTmice Date: Sun, 27 Jul 2014 19:06:08 +0200 Subject: trying to work around npe in androids xml parser --- src/eu/siacs/conversations/xml/XmlReader.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/eu') diff --git a/src/eu/siacs/conversations/xml/XmlReader.java b/src/eu/siacs/conversations/xml/XmlReader.java index 10b2fb06..0a74dbfb 100644 --- a/src/eu/siacs/conversations/xml/XmlReader.java +++ b/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; } -- cgit v1.2.3