Dmitry Timoshkov : xmllite: Don' t fail the whole parsing process because of unsupported 'xmlns' attribute.

Alexandre Julliard julliard at winehq.org
Mon Feb 17 13:45:14 CST 2014


Module: wine
Branch: master
Commit: 5425cb341361b1c3bb468edb5b153807be8a8344
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5425cb341361b1c3bb468edb5b153807be8a8344

Author: Dmitry Timoshkov <dmitry at baikal.ru>
Date:   Fri Feb 14 16:23:10 2014 +0900

xmllite: Don't fail the whole parsing process because of unsupported 'xmlns' attribute.

---

 dlls/xmllite/reader.c |    3 ---
 1 file changed, 3 deletions(-)

diff --git a/dlls/xmllite/reader.c b/dlls/xmllite/reader.c
index 6d20324..fb06200 100644
--- a/dlls/xmllite/reader.c
+++ b/dlls/xmllite/reader.c
@@ -2045,10 +2045,7 @@ static HRESULT reader_parse_attribute(xmlreader *reader)
     }
 
     if (strval_eq(reader, &qname, &xmlns))
-    {
         FIXME("default namespace definitions not supported\n");
-        return E_NOTIMPL;
-    }
 
     hr = reader_parse_eq(reader);
     if (FAILED(hr)) return hr;




More information about the wine-cvs mailing list