Re: git clone http://git.savannah.gnu.org/cgit/xboard.git segfaults
From: Tay Ray Chuan <hidden>
Date: 2016-06-15 22:47:19
Subsystem:
the rest · Maintainer:
Linus Torvalds
Hi, On Mon, Aug 17, 2009 at 10:22 PM, Johannes Schindelin[off-list ref] wrote:
Seems that an object request is aborted, but the slot, and therefore the callback, is called nevertheless. Tay, does that ring a bell?
thanks Johannes, your diagnosis was a vital clue. Ali, could you see if this patch fixes it for you? On my side, I had some difficulty reproducing your problem reliably (it happened sometimes but not on other times). -- Cheers, Ray Chuan -- >8 -- Subject: [PATCH] http.c: set slot callback members to NULL when releasing object Set the members callback_func and callback_data of freq->slot to NULL when releasing a http_object_request. release_active_slot() is also invoked on the slot to remove the curl handle associated with the slot from the multi stack (CURLM *curlm in http.c). These prevent the callback function and data from being used in http methods (like http.c::finish_active_slot()) after a http_object_request has been free'd. Signed-off-by: Tay Ray Chuan <redacted> --- http.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/http.c b/http.c
index a2720d5..1ae19e0 100644
--- a/http.c
+++ b/http.c
-1285,5 +1285,10 @@ void release_http_object_request(struct http_object_request *freq)
free(freq->url);
freq->url = NULL;
}
- freq->slot = NULL;
+ if (freq->slot != NULL) {
+ freq->slot->callback_func = NULL;
+ freq->slot->callback_data = NULL;
+ release_active_slot(freq->slot);
+ freq->slot = NULL;
+ }
}
--1.6.4.193.gaceaa.dirty