+2022-11-15 Mark Wielaard <mark@klomp.org>
+
+ * debuginfod-client.c (debuginfod_query_server): Initialize
+ response_data early.
+
2022-11-07 Aaron Merey <amerey@redhat.com>
* debuginfod-client.c (debuginfod_find_section): Don't treat 0 as an
data[i].handle = NULL;
data[i].fd = -1;
data[i].errbuf[0] = '\0';
+ data[i].response_data = NULL;
+ data[i].response_data_size = 0;
}
char *escaped_string = NULL;
curl_easy_setopt_ck (data[i].handle, CURLOPT_LOW_SPEED_LIMIT,
100 * 1024L);
}
- data[i].response_data = NULL;
- data[i].response_data_size = 0;
curl_easy_setopt_ck(data[i].handle, CURLOPT_FILETIME, (long) 1);
curl_easy_setopt_ck(data[i].handle, CURLOPT_FOLLOWLOCATION, (long) 1);
curl_easy_setopt_ck(data[i].handle, CURLOPT_FAILONERROR, (long) 1);