mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-08 12:44:23 +01:00
curl-shim: clean up varargs
* keyserver/curl-shim.c (curl_easy_setopt) : ensure that va_end is called. -- stdarg(3) says: Each invocation of va_start() must be matched by a corresponding invocation of va_end() in the same function. Observed by Joshua Rogers <honey@internot.info> Debian-Bug-Id: #773475
This commit is contained in:
parent
0c3d7645df
commit
839727503d
@ -165,6 +165,8 @@ curl_easy_setopt(CURL *curl,CURLoption option,...)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
va_end(ap);
|
||||||
|
|
||||||
return handle_error(curl,CURLE_OK,NULL);
|
return handle_error(curl,CURLE_OK,NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user