From 923ce4a5909aa7ef1379aa93c6eabcc9a225dd4e Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 1 Jun 2018 12:55:41 +0200 Subject: 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 --- lib/multi.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib/multi.c') diff --git a/lib/multi.c b/lib/multi.c index d48eed4e5..be926ae92 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; -- cgit v1.2.3