Skip to content

Commit

Permalink
prevent errors being printed to stderr when opening saves
Browse files Browse the repository at this point in the history
adding a hack onto a hack
  • Loading branch information
jacob1 committed Feb 13, 2016
1 parent 926f556 commit be170fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/requestbroker/WebRequest.cpp
Expand Up @@ -37,7 +37,7 @@ RequestBroker::ProcessResponse WebRequest::Process(RequestBroker & rb)
int status, data_size;
data = http_async_req_stop(HTTPContext, &status, &data_size);

Client::Ref().ParseServerReturn(data, status, true);
Client::Ref().ParseServerReturn(NULL, status, true);
if (status == 200 && data)
{
void * resultObject = new std::vector<unsigned char>(data, data+data_size);
Expand Down

0 comments on commit be170fe

Please sign in to comment.