[PATCH 07/14] xmllite: Update prefix when moving to first attribute

Nikolay Sivov nsivov at codeweavers.com
Fri Dec 9 07:38:27 CST 2016


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 dlls/xmllite/reader.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/xmllite/reader.c b/dlls/xmllite/reader.c
index 874de75..d8d031d 100644
--- a/dlls/xmllite/reader.c
+++ b/dlls/xmllite/reader.c
@@ -2828,6 +2828,7 @@ static HRESULT WINAPI xmlreader_MoveToNextAttribute(IXmlReader* iface)
     if (next)
     {
         This->attr = LIST_ENTRY(next, struct attribute, entry);
+        reader_set_strvalue(This, StringValue_Prefix, &This->attr->prefix);
         reader_set_strvalue(This, StringValue_LocalName, &This->attr->localname);
         reader_set_strvalue(This, StringValue_Value, &This->attr->value);
     }
-- 
2.10.2




More information about the wine-patches mailing list