From: Nikolay Sivov Subject: [PATCH 07/14] xmllite: Update prefix when moving to first attribute Message-Id: <20161209133834.699-7-nsivov@codeweavers.com> Date: Fri, 9 Dec 2016 16:38:27 +0300 In-Reply-To: <20161209133834.699-1-nsivov@codeweavers.com> References: <20161209133834.699-1-nsivov@codeweavers.com> Signed-off-by: Nikolay Sivov --- 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