diff options
author | 2009-12-27 18:42:45 +0000 | |
---|---|---|
committer | 2009-12-27 18:42:45 +0000 | |
commit | 69374b686dc24aae625e026bac8c6c12a3a3d1c7 (patch) | |
tree | 776012e7fc4109a019a3de8501cfab3a912262ce | |
parent | sync (diff) | |
download | wireguard-openbsd-69374b686dc24aae625e026bac8c6c12a3a3d1c7.tar.xz wireguard-openbsd-69374b686dc24aae625e026bac8c6c12a3a3d1c7.zip |
Security fix for CVE-2009-3560, which could allow attackers to cause
a DoS using a specially crafted XML document with malformed UTF-8
sequences.
Patch taken from upstream CVS.
-rw-r--r-- | lib/libexpat/lib/xmlparse.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libexpat/lib/xmlparse.c b/lib/libexpat/lib/xmlparse.c index eafc7754914..49b1e2f61b9 100644 --- a/lib/libexpat/lib/xmlparse.c +++ b/lib/libexpat/lib/xmlparse.c @@ -3731,7 +3731,6 @@ doProlog(XML_Parser parser, return XML_ERROR_NO_ELEMENTS; default: tok = -tok; - next = end; break; } } |