Ok, looks like a bug.  In UnixHTTPURLInputStream.cpp, the following


    if (queryAsCharStar != 0)
    {
        fBuffer[strlen(fBuffer)] = chQuestion;
        strcat(fBuffer, queryAsCharStar);
    }


should be

    if (queryAsCharStar != 0)
    {
        size_t n = strlen(fBuffer);
        fBuffer[n] = chQuestion;
        fBuffer[n+1] = '\0';
        strcat(fBuffer, queryAsCharStar);
    }

 
  This is relative to the stable version.

  BTW: Any pointers on debugging with GDB and exceptions would be greatly
appreciated.

  Thanks.

---
Kent Vander Velden
[EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to