Commit 9562606a authored by mstorsjo's avatar mstorsjo

http: Set http_code to 200 when doing a POST

This avoids reading and comparing uninitialized memory.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23464 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 458ca385
......@@ -291,6 +291,10 @@ static int http_connect(URLContext *h, const char *path, const char *hoststr,
if (post) {
/* always use chunked encoding for upload data */
s->chunksize = 0;
/* Pretend that it did work. We didn't read any header yet, since
* we've still to send the POST data, but the code calling this
* function will check http_code after we return. */
s->http_code = 200;
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment