From d4cc240c19f84c129876b4a28163c961ddfc922c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 17 Jun 2017 23:58:03 +0200 Subject: tool_wrte_cb: remove check for config == NULL ... as it really cannot have reached this far with config being NULL, thus this is unnecesary and misleading. Bug: https://news.ycombinator.com/item?id=14577585 and https://daniel.haxx.se/blog/2017/06/17/curl-doesnt-spew-binary-anymore/comment-page-1/#comment-18356 Forwarded-to-us-by: Jakub Wilk --- src/tool_cb_wrt.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/tool_cb_wrt.c b/src/tool_cb_wrt.c index c818abf51..ea52469b0 100644 --- a/src/tool_cb_wrt.c +++ b/src/tool_cb_wrt.c @@ -88,9 +88,6 @@ size_t tool_write_cb(char *buffer, size_t sz, size_t nmemb, void *userdata) */ const size_t failure = bytes ? 0 : 1; - if(!config) - return failure; - #ifdef DEBUGBUILD { char *tty = curlx_getenv("CURL_ISATTY"); -- cgit v1.2.3