diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-05-03 12:40:37 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-03 12:40:37 +0000 |
commit | 0b898b5a8a1998a529bcab8808540a741dcc7ef7 (patch) | |
tree | 824d50d9dc0a2faeabbbee01faea7068197174c0 | |
parent | a9e0885be07af2f776716a83ca1f663d36935506 (diff) |
fixed return code
-rw-r--r-- | lib/multi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/multi.c b/lib/multi.c index 47bf1c005..e8e079c6a 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -438,7 +438,7 @@ CURLMsg *curl_multi_info_read(CURLM *multi_handle, int *msgs_in_queue) return msg; } else - return CURLM_BAD_HANDLE; + return NULL; } /* |