projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2e6f1c
)
Fix typo in http-push.c
author
Jan Andres
<jandres@gmx.net>
Tue, 29 Nov 2005 00:51:54 +0000
(
01:51
+0100)
committer
Junio C Hamano
<junkio@cox.net>
Tue, 29 Nov 2005 05:56:30 +0000
(21:56 -0800)
Typo resulted in accessing past the beginning of a string causing segfaults.
[jc: signoffs?]
http-push.c
patch
|
blob
|
history
diff --git
a/http-push.c
b/http-push.c
index
76c7886
..
ad78982
100644
(file)
--- a/
http-push.c
+++ b/
http-push.c
@@
-784,7
+784,7
@@
static void handle_new_lock_ctx(struct xml_ctx *ctx, int tag_closed)
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);
}
}