You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@xerces.apache.org by cr...@goingware.com on 2000/02/17 05:35:37 UTC

infinite loop in XMLURL::parse

I think this:

   // Run up past any spaces
    while (*srcPtr)
    {
        if (!XMLPlatformUtils::fgTransService->isSpace(*srcPtr))
            break;
    }

should be something like

   // Run up past any spaces
    while (*srcPtr)
    {
        if (!XMLPlatformUtils::fgTransService->isSpace(*srcPtr))
            break;
	srcPtr++
    }

in XMLURL.cpp, function parse.

Mike Crawford
crawford@goingware.com
http://www.goingware.com