From: Daniel Stenberg Date: Fri, 1 Jun 2018 10:55:41 +0000 (+0200) Subject: multi: remove a DEBUGF() X-Git-Tag: curl-7_61_0~92 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=923ce4a5909aa7ef1379aa93c6eabcc9a225dd4e;p=thirdparty%2Fcurl.git multi: remove a DEBUGF() ... it might call infof() with a NULL first argument that isn't harmful but makes it not do anything. The infof() line is not very useful anymore, it has served it purpose. Good riddance! Fixes #2627 --- diff --git a/lib/multi.c b/lib/multi.c index d48eed4e54..be926ae920 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -1083,8 +1083,6 @@ CURLMcode curl_multi_wait(struct Curl_multi *multi, int pollrc; /* wait... */ pollrc = Curl_poll(ufds, nfds, timeout_ms); - DEBUGF(infof(data, "Curl_poll(%u ds, %d ms) == %d\n", - nfds, timeout_ms, pollrc)); if(pollrc > 0) { retcode = pollrc;