commit 35635c6a780f5159b1a11c08988c33ac49927099
parent 0a83b4d35aff4bf62f46008b4f1c26534adc047b
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Tue, 16 May 2023 14:53:41 +0300
test_quiesce: fixed possible uninitialised var
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/testcurl/test_quiesce.c b/src/testcurl/test_quiesce.c
@@ -543,7 +543,7 @@ testExternalGet (void)
time_t start;
struct timeval tv;
int i;
- MHD_socket fd;
+ MHD_socket fd = MHD_INVALID_SOCKET;
if (verbose)
printf ("testExternalGet test started.\n");