projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73b0e5a
)
get_sha1() - fix infinite loop on nonexistent stage.
author
Junio C Hamano
<junkio@cox.net>
Mon, 8 May 2006 22:44:06 +0000
(15:44 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Mon, 8 May 2006 22:44:06 +0000
(15:44 -0700)
Signed-off-by: Junio C Hamano <junkio@cox.net>
sha1_name.c
patch
|
blob
|
history
diff --git
a/sha1_name.c
b/sha1_name.c
index
ec5cd2c
..
dc68355
100644
(file)
--- a/
sha1_name.c
+++ b/
sha1_name.c
@@
-498,6
+498,7
@@
int get_sha1(const char *name, unsigned char *sha1)
memcpy(sha1, ce->sha1, 20);
return 0;
}
+ pos++;
}
return -1;
}