Doh! We're making DAMN sure we get all those spaces :-) I'll fix that one.

----------------------------------------
Dean Roddey
Software Weenie
IBM Center for Java Technology - Silicon Valley
[EMAIL PROTECTED]



[EMAIL PROTECTED] on 02/16/2000 08:35:37 PM

Please respond to [EMAIL PROTECTED]

To:   [EMAIL PROTECTED]
cc:
Subject:  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
[EMAIL PROTECTED]
http://www.goingware.com




Reply via email to