Skip to content
Snippets Groups Projects
Commit e9b86595 authored by Tinny Ng's avatar Tinny Ng
Browse files

[Bug 3813] BinHTTPURLInputStream has weak HTTP request capabilities. By Kevin Philips.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@173163 13f79535-47bb-0310-9956-ffa450edef68
parent d357ffe8
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,9 @@
/*
* $Log$
* Revision 1.9 2001/10/24 20:17:54 tng
* [Bug 3813] BinHTTPURLInputStream has weak HTTP request capabilities. By Kevin Philips.
*
* Revision 1.8 2001/10/24 20:03:03 tng
* [Bug 2305] Include <stdlib.h> to BinHTTPURLInputStream.cpp. By Peter A. Volchek.
*
......@@ -349,7 +352,8 @@ BinHTTPURLInputStream::BinHTTPURLInputStream(const XMLURL& urlSource)
if (queryAsCharStar != 0)
{
fBuffer[strlen(fBuffer)] = chQuestion;
// Tack on a ? before the fragment
strcat(fBuffer,"?");
strcat(fBuffer, queryAsCharStar);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment