commit 3952ac7133bca700817dfa18a24adbc1116d9aed
parent 8414403e084558a56915429ff7e84d7347870e38
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Wed, 7 Mar 2018 13:55:12 +0100
fix double destruction of response.
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/twister/taler-twister-service.c b/src/twister/taler-twister-service.c
@@ -1110,8 +1110,7 @@ create_response (void *cls,
char *token_path;
char *mod_response;
unsigned int index;
-
- MHD_destroy_response (hr->response);
+ /* XXX: Who destroys the unused response? */
if (NULL == MHD_lookup_connection_value
(con, MHD_HEADER_KIND, "application/json"))