Nikolay Sivov : xmllite: Update prefix when moving to first attribute.
Module: wine Branch: master Commit: 585735a0daf9f6b8b38b9b64fa88e85d96832883 URL: http://source.winehq.org/git/wine.git/?a=commit;h=585735a0daf9f6b8b38b9b64fa... Author: Nikolay Sivov <nsivov(a)codeweavers.com> Date: Fri Dec 9 16:38:27 2016 +0300 xmllite: Update prefix when moving to first attribute. Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- 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); }
participants (1)
-
Alexandre Julliard