Git development
 help / color / mirror / Atom feed
* [PATCH] Fix typo in http-push.c
@ 2005-11-29  0:51 Jan Andres
  2005-11-29  6:03 ` Junio C Hamano
  2005-11-29  8:24 ` Johannes Schindelin
  0 siblings, 2 replies; 6+ messages in thread
From: Jan Andres @ 2005-11-29  0:51 UTC (permalink / raw)
  To: git

Hi guys,

Please find below the patch for a typo in http-push.c (in the maint
branch), which caused git-http-push to segfault on my Linux i386 box.

Regards,
Jan


diff --git a/http-push.c b/http-push.c
index 76c7886..ad78982 100644
--- a/http-push.c
+++ b/http-push.c
@@ -784,7 +784,7 @@ static void handle_new_lock_ctx(struct x
 					strtol(ctx->cdata + 7, NULL, 10);
 		} else if (!strcmp(ctx->name, DAV_ACTIVELOCK_TOKEN)) {
 			if (!strncmp(ctx->cdata, "opaquelocktoken:", 16)) {
-				lock->token = xmalloc(strlen(ctx->cdata - 15));
+				lock->token = xmalloc(strlen(ctx->cdata) - 15);
 				strcpy(lock->token, ctx->cdata + 16);
 			}
 		}

-- 
Jan Andres <jandres@gmx.net>

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-11-29 16:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-29  0:51 [PATCH] Fix typo in http-push.c Jan Andres
2005-11-29  6:03 ` Junio C Hamano
2005-11-29  8:24 ` Johannes Schindelin
2005-11-29 13:35   ` Jan Andres
2005-11-29 15:30     ` [PATCH] Fix typo in http-push.c, take two Jan Andres
2005-11-29 16:40     ` [PATCH] Fix typo in http-push.c Johannes Schindelin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox