projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87a56cd
)
checkdiff_consume: strtol parameter fix.
author
Junio C Hamano
<junkio@cox.net>
Sun, 21 May 2006 10:01:59 +0000
(
03:01
-0700)
committer
Junio C Hamano
<junkio@cox.net>
Sun, 21 May 2006 10:01:59 +0000
(
03:01
-0700)
The second parameter is not the end of string input; it is
the optional return value to retrieve where the parser stopped.
Signed-off-by: Junio C Hamano <junkio@cox.net>
diff.c
patch
|
blob
|
history
diff --git
a/diff.c
b/diff.c
index
af5db0e
..
d3bb10e
100644
(file)
--- a/
diff.c
+++ b/
diff.c
@@
-431,7
+431,7
@@
static void checkdiff_consume(void *priv, char *line, unsigned long len)
else if (line[0] == '@') {
char *plus = strchr(line, '+');
if (plus)
- data->lineno = strtol(plus,
line + len
, 10);
+ data->lineno = strtol(plus,
NULL
, 10);
else
die("invalid diff");
}