View | Details | Raw Unified | Return to bug 114685
Collapse All | Expand All

(-)src/xercesc/internal/IGXMLScanner.cpp (+5 lines)
Lines 1157-1162 Link Here
1157
    // If we have a doc handler, tell it about the end tag
1157
    // If we have a doc handler, tell it about the end tag
1158
    if (fDocHandler)
1158
    if (fDocHandler)
1159
    {
1159
    {
1160
        int prefixColonPos = XMLString::indexOf(elemName, chColon);
1161
        if (prefixColonPos == -1)
1162
            fPrefixBuf.reset();
1163
        else
1164
            fPrefixBuf.set(elemName, prefixColonPos);
1160
        fDocHandler->endElement
1165
        fDocHandler->endElement
1161
        (
1166
        (
1162
            *topElem->fThisElement
1167
            *topElem->fThisElement
1163
  - 1.81
1168
  - 1.81
1164
  + 1.82
1169
  + 1.82
(-)src/xercesc/internal/SGXMLScanner.cpp (+5 lines)
Lines 1013-1018 Link Here
1013
    // If we have a doc handler, tell it about the end tag
1013
    // If we have a doc handler, tell it about the end tag
1014
    if (fDocHandler)
1014
    if (fDocHandler)
1015
    {
1015
    {
1016
        int prefixColonPos = XMLString::indexOf(elemName, chColon);
1017
        if (prefixColonPos == -1)
1018
            fPrefixBuf.reset();
1019
        else
1020
            fPrefixBuf.set(elemName, prefixColonPos);
1016
        fDocHandler->endElement
1021
        fDocHandler->endElement
1017
        (
1022
        (
1018
            *topElem->fThisElement
1023
            *topElem->fThisElement
1019
  - 1.102
1024
  - 1.102
1020
  + 1.103
1025
  + 1.103
(-)src/xercesc/internal/XSAXMLScanner.cpp (+5 lines)
Lines 158-163 Link Here
158
    // If we have a doc handler, tell it about the end tag
158
    // If we have a doc handler, tell it about the end tag
159
    if (fDocHandler)
159
    if (fDocHandler)
160
    {
160
    {
161
        int prefixColonPos = XMLString::indexOf(elemName, chColon);
162
        if (prefixColonPos == -1)
163
            fPrefixBuf.reset();
164
        else
165
            fPrefixBuf.set(elemName, prefixColonPos);
161
        fDocHandler->endElement
166
        fDocHandler->endElement
162
        (
167
        (
163
            *topElem->fThisElement, uriId, isRoot, fPrefixBuf.getRawBuffer()
168
            *topElem->fThisElement, uriId, isRoot, fPrefixBuf.getRawBuffer()
164
  - 1.2
169
  - 1.2
165
  + 1.3
170
  + 1.3

Return to bug 114685