diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-10-17 10:29:24 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-10-17 10:29:24 -0700 |
commit | e98fa647aa5673cc95b6e9be1fdc13c0afa2cb37 (patch) | |
tree | 7faa5518cddae461d03c77fdef7f2a58f2c26dac /remote-curl.c | |
parent | 5a77ff74ba5eaef9acb8ea240cb52dd84b874b7a (diff) | |
parent | 188923f0d1c8148415b3173986cd1e21871c947e (diff) | |
download | git-e98fa647aa5673cc95b6e9be1fdc13c0afa2cb37.tar.gz |
Merge branch 'jk/maint-http-half-auth-push' into maint
* jk/maint-http-half-auth-push:
http: fix segfault in handle_curl_result
Diffstat (limited to 'remote-curl.c')
-rw-r--r-- | remote-curl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote-curl.c b/remote-curl.c index a2696082fb..468ccef58a 100644 --- a/remote-curl.c +++ b/remote-curl.c @@ -355,7 +355,7 @@ static int run_slot(struct active_request_slot *slot) slot->curl_result = curl_easy_perform(slot->curl); finish_active_slot(slot); - err = handle_curl_result(slot); + err = handle_curl_result(slot, &results); if (err != HTTP_OK && err != HTTP_REAUTH) { error("RPC failed; result=%d, HTTP code = %ld", results.curl_result, results.http_code); |