mirror of
https://github.com/curl/curl.git
synced 2026-06-17 06:15:37 +03:00
multi.c: Fixed compilation error introduced in commit a900d45489
Systems that define SIGPIPE_VARIABLE as a noop would not compile as restore_pipe was defined afterwards.
This commit is contained in:
parent
59f1209fad
commit
26ff1ea6c3
1 changed files with 1 additions and 1 deletions
|
|
@ -1787,8 +1787,8 @@ CURLMcode curl_multi_cleanup(CURLM *multi_handle)
|
|||
struct SessionHandle *nextdata;
|
||||
|
||||
if(GOOD_MULTI_HANDLE(multi)) {
|
||||
SIGPIPE_VARIABLE(pipe);
|
||||
bool restore_pipe = FALSE;
|
||||
SIGPIPE_VARIABLE(pipe);
|
||||
|
||||
multi->type = 0; /* not good anymore */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue