.Web: fixed POST data handling in ISAPI extension library

git-svn-id: svn://ultimatepp.org/upp/trunk@2338 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
rylek 2010-04-25 19:37:14 +00:00
parent 16658b4509
commit a65eba5954
2 changed files with 5 additions and 3 deletions

View file

@ -850,6 +850,8 @@ String GetHttpURI(HttpQuery query)
void GetHttpPostData(HttpQuery& query, String buffer)
{
query.Set("$$POSTDATA", buffer);
const char *p = buffer;
while(p[0] != '-' || p[1] != '-') {
while(*p != '\n')