Re: t5541-http-push hanging
From: Shawn O. Pearce <hidden>
Date: 2016-06-15 22:47:42
Subsystem:
the rest · Maintainer:
Linus Torvalds
Brian Gernhardt [off-list ref] wrote:
My build script for git has been hanging at t5541.2 and I haven't had the tuits to discover why. Here's what I've gotten so far, in case anyone can figure it out faster:
...
Initialized empty Git repository in /Users/brian/dev/git/t/trash directory.t5541-http-push/test_repo_clone/.git/ error: RPC failed; result=22, HTTP code = 500 ^CFATAL: Unexpected exit with code 130
...
[Wed Nov 11 06:19:39 2009] [error] [client 127.0.0.1] git-http-backend(59490) malloc: *** error for object 0x100200340: incorrect checksum for freed object - object was probably modified after being freed. [Wed Nov 11 06:19:39 2009] [error] [client 127.0.0.1] *** set a breakpoint in malloc_error_break to debug [Wed Nov 11 06:19:40 2009] [error] [client 127.0.0.1] Premature end of script headers: git-http-backend
Probably caused by a missing cast:
diff --git a/http-backend.c b/http-backend.c
index f8ea9d7..957e4ef 100644
--- a/http-backend.c
+++ b/http-backend.c@@ -136,7 +136,7 @@ static void hdr_str(const char *name, const char *value) static void hdr_int(const char *name, size_t value) { - format_write(1, "%s: %" PRIuMAX "\r\n", name, value); + format_write(1, "%s: %" PRIuMAX "\r\n", name, (uintmax_t)value); } static void hdr_date(const char *name, unsigned long when)
--
Shawn.