debuginfod: Check result of curl_easy_getinfo in debuginfod_write_callback
authorMark Wielaard <mark@klomp.org>
Mon, 9 May 2022 15:32:24 +0000 (17:32 +0200)
committerMark Wielaard <mark@klomp.org>
Sat, 14 May 2022 13:16:45 +0000 (15:16 +0200)
This was the only place in debuginfod-client.c where we didn't check
the result of curl_easy_getinfo. Just check it to make things consistent.

Signed-off-by: Mark Wielaard <mark@klomp.org>
debuginfod/ChangeLog
debuginfod/debuginfod-client.c

index 1c5cd4e..8f69409 100644 (file)
@@ -1,3 +1,8 @@
+2022-05-09  Mark Wielaard  <mark@klomp.org>
+
+       * debuginfod-client.c (debuginfod_write_callback): Check result
+       of curl_easy_getinfo.
+
 2022-05-05  Mark Wielaard  <mark@klomp.org>
 
        * debuginfod.cxx (main): Define use_epoll. Set to MHD_USE_EPOLL
index 521972e..882a809 100644 (file)
@@ -213,8 +213,9 @@ debuginfod_write_callback (char *ptr, size_t size, size_t nmemb, void *data)
       *d->target_handle = d->handle;
       /* update the client object */
       const char *url = NULL;
-      (void) curl_easy_getinfo (d->handle, CURLINFO_EFFECTIVE_URL, &url);
-      if (url)
+      CURLcode curl_res = curl_easy_getinfo (d->handle,
+                                             CURLINFO_EFFECTIVE_URL, &url);
+      if (curl_res == CURLE_OK && url)
         {
           free (d->client->url);
           d->client->url = strdup(url); /* ok if fails */