diff options
author | iNPUTmice <daniel@gultsch.de> | 2014-06-25 17:54:00 +0200 |
---|---|---|
committer | iNPUTmice <daniel@gultsch.de> | 2014-06-25 17:54:00 +0200 |
commit | 66bb5c9b51d8da72e0799707ba95d83da4f419b5 (patch) | |
tree | f25f471e6736367dc79f5b32675fcdf31ecc0e2c /src/eu | |
parent | 5db04a37bd5b7acc41a8f2dad941fabd9a6a97e8 (diff) |
more npe fixes
Diffstat (limited to 'src/eu')
-rw-r--r-- | src/eu/siacs/conversations/xml/Tag.java | 2 | ||||
-rw-r--r-- | src/eu/siacs/conversations/xml/XmlReader.java | 9 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/eu/siacs/conversations/xml/Tag.java b/src/eu/siacs/conversations/xml/Tag.java index 7055e2b3..2d5ffdbc 100644 --- a/src/eu/siacs/conversations/xml/Tag.java +++ b/src/eu/siacs/conversations/xml/Tag.java @@ -56,10 +56,12 @@ public class Tag { } public boolean isStart(String needle) { + if (needle==null) return false; return (this.type == START) && (needle.equals(this.name)); } public boolean isEnd(String needle) { + if (needle==null) return false; return (this.type == END) && (needle.equals(this.name)); } diff --git a/src/eu/siacs/conversations/xml/XmlReader.java b/src/eu/siacs/conversations/xml/XmlReader.java index 4c418027..98bee3ee 100644 --- a/src/eu/siacs/conversations/xml/XmlReader.java +++ b/src/eu/siacs/conversations/xml/XmlReader.java @@ -89,12 +89,15 @@ public class XmlReader { Element element = new Element(currentTag.getName()); element.setAttributes(currentTag.getAttributes()); Tag nextTag = this.readTag(); + if (nextTag == null) { + throw new IOException("unterupted mid tag"); + } if(nextTag.isNo()) { element.setContent(nextTag.getName()); nextTag = this.readTag(); - } - if (nextTag == null) { - throw new IOException("unterupted mid tag"); + if (nextTag == null) { + throw new IOException("unterupted mid tag"); + } } while(!nextTag.isEnd(element.getName())) { if (!nextTag.isNo()) { |