msxml: Fix parsing <.../> elements.
This commit is contained in:
parent
c801c18ad2
commit
1596a1acbf
|
@ -1040,7 +1040,10 @@ static void libxmlStartElementNS(
|
||||||
saxattributes *attr;
|
saxattributes *attr;
|
||||||
int index;
|
int index;
|
||||||
|
|
||||||
update_position(This, (xmlChar*)This->pParserCtxt->input->cur+1);
|
if(*(This->pParserCtxt->input->cur) == '/')
|
||||||
|
update_position(This, (xmlChar*)This->pParserCtxt->input->cur+2);
|
||||||
|
else
|
||||||
|
update_position(This, (xmlChar*)This->pParserCtxt->input->cur+1);
|
||||||
|
|
||||||
hr = namespacePush(This, nb_namespaces);
|
hr = namespacePush(This, nb_namespaces);
|
||||||
if(hr==S_OK && ((This->vbInterface && This->saxreader->vbcontentHandler)
|
if(hr==S_OK && ((This->vbInterface && This->saxreader->vbcontentHandler)
|
||||||
|
|
Loading…
Reference in New Issue