From 74b2428f5573b1f68ce717706296ae7d1832cd65 Mon Sep 17 00:00:00 2001 From: Brad Roberts Date: Sun, 17 Apr 2005 19:12:14 -0700 Subject: [PATCH] fork optional branch point normazilation Fix remove_specials for real. The second half logic needs the original head of the string. Signed-off-by: Brad Roberts Signed-off-by: Linus Torvalds --- commit-tree.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'commit-tree.c') diff --git a/commit-tree.c b/commit-tree.c index 93f3a57991..cbb7d12a86 100644 --- a/commit-tree.c +++ b/commit-tree.c @@ -83,11 +83,11 @@ static void finish_buffer(char *tag, char **bufp, unsigned int *sizep) static void remove_special(char *p) { char c; - char *dst = p; + char *dst = p, *src = p; for (;;) { - c = *p; - p++; + c = *src; + src++; switch(c) { case '\n': case '<': case '>': continue; -- cgit v1.2.3