1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-21 22:13:07 +01:00

Fix uninitialised variables

This commit is contained in:
Michał Janiszewski
2016-10-07 09:35:47 +02:00
parent 8cd7126d63
commit 7f9fa28995
6 changed files with 9 additions and 9 deletions

View File

@@ -118,7 +118,7 @@ http_json_response *http_request_json(const http_json_request *request)
CURL *curl;
CURLcode curlResult;
http_json_response *response;
read_buffer readBuffer;
read_buffer readBuffer = { 0 };
write_buffer writeBuffer;
curl = curl_easy_init();