[PATCH] http: fix segfault in handle_curl_result

2012-10-12 Thread Jeff King
On Fri, Oct 12, 2012 at 12:58:21AM -0400, Brad Hein wrote: In Fedora 17 With git-1.7.11.7-1.fc17.x86_64 (rpm) I try to clone a particular repository but git just returns, having not cloned the repo. Seems like a bug. Details follow: $ git clone http://gnuradio.org/git/gnuradio.git

Re: [PATCH] http: fix segfault in handle_curl_result

2012-10-12 Thread Junio C Hamano
Jeff King p...@peff.net writes: When we create an http active_request_slot, we can set its results pointer back to local storage. The http code will fill in the details of how the request went, and we can access those details even after the slot has been cleaned up. ... However, I'm