gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 02/29: examples/postinmemory.c: Call curl_global_cleanup always


From: gnunet
Subject: [gnurl] 02/29: examples/postinmemory.c: Call curl_global_cleanup always
Date: Fri, 10 Jan 2020 23:05:40 +0100

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 68da0b8b8694328b214e687a6cff5cbb744dcfd5
Author: Jay Satiro <address@hidden>
AuthorDate: Tue Dec 24 01:06:47 2019 -0500

    examples/postinmemory.c: Call curl_global_cleanup always
    
    Prior to this change curl_global_cleanup was not called if
    curl_easy_init failed.
    
    Reported-by: address@hidden
    
    Fixes https://github.com/curl/curl/issues/4751
---
 docs/examples/postinmemory.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/docs/examples/postinmemory.c b/docs/examples/postinmemory.c
index 376f33450..e2718c5ba 100644
--- a/docs/examples/postinmemory.c
+++ b/docs/examples/postinmemory.c
@@ -104,10 +104,9 @@ int main(void)
 
     /* always cleanup */
     curl_easy_cleanup(curl);
-
-    /* we're done with libcurl, so clean it up */
-    curl_global_cleanup();
   }
+
   free(chunk.memory);
+  curl_global_cleanup();
   return 0;
 }

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]