aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-11-16 11:41:53 +0100
committerChristian Grothoff <christian@grothoff.org>2019-11-16 11:41:53 +0100
commitc3b1cb6b5b22c140d0774fe7029b3ae98d01cd26 (patch)
tree199b837766a77cb0766593e05c04af112421cfb3 /src
parentc4d23d5a4a3f2b6f67cf7c5db7859ea0e3e44f6c (diff)
downloadgnunet-c3b1cb6b5b22c140d0774fe7029b3ae98d01cd26.tar.gz
gnunet-c3b1cb6b5b22c140d0774fe7029b3ae98d01cd26.zip
add missing reschedule call
Diffstat (limited to 'src')
-rw-r--r--src/curl/curl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/curl/curl.c b/src/curl/curl.c
index f0ccd7f19..f672bec02 100644
--- a/src/curl/curl.c
+++ b/src/curl/curl.c
@@ -407,6 +407,7 @@ GNUNET_CURL_job_cancel (struct GNUNET_CURL_Job *job)
407 curl_easy_cleanup (job->easy_handle); 407 curl_easy_cleanup (job->easy_handle);
408 GNUNET_free_non_null (job->db.buf); 408 GNUNET_free_non_null (job->db.buf);
409 curl_slist_free_all (job->job_headers); 409 curl_slist_free_all (job->job_headers);
410 ctx->cb (ctx->cb_cls);
410 GNUNET_free (job); 411 GNUNET_free (job);
411} 412}
412 413