Don't try to parse update check response if it's NULL!

This commit is contained in:
Simon Robertshaw 2013-03-22 13:20:54 +00:00
parent 340a02f37e
commit 700aff4784

View File

@ -643,7 +643,7 @@ void Client::Tick()
if(data)
free(data);
}
else
else if(data)
{
std::istringstream dataStream(data);