From: Steve Holme Date: Wed, 27 Nov 2013 22:44:09 +0000 (+0000) Subject: multi.c: Fixed compilation error introduced in commit a900d45489fc14 X-Git-Tag: curl-7_34_0~39 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=26ff1ea6c33fb624793909ca17a6ff57cecca004;p=thirdparty%2Fcurl.git multi.c: Fixed compilation error introduced in commit a900d45489fc14 Systems that define SIGPIPE_VARIABLE as a noop would not compile as restore_pipe was defined afterwards. --- diff --git a/lib/multi.c b/lib/multi.c index df8befa48f..6363f5a332 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -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 */