From c3e3ed944c2e1190a56eb0dccd0c784bf2f8e183 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 12 Oct 2015 23:56:42 +0900 Subject: [PATCH] Plug a memory leak. Courtesy Maraakate. --- qw/source/cl_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/cl_http.c b/qw/source/cl_http.c index efa670c79..38bd9f204 100644 --- a/qw/source/cl_http.c +++ b/qw/source/cl_http.c @@ -114,7 +114,7 @@ CL_HTTP_Update (void) Sys_Printf ("download failed: %ld\n", response_code); CL_FailDownload (); } - curl_multi_remove_handle (multi_handle, easy_handle); + CL_HTTP_Reset (); } } }