Code

Refactor git_set_argv0_path() to git_extract_argv0_path()
[git.git] / sha1_name.c
index 75a5a7e96f292bed344a7609fca2f3a45ba4314e..159c2ab84fa2cdde0e540024a1ca22e0bbb43af8 100644 (file)
@@ -351,7 +351,10 @@ static int get_sha1_basic(const char *str, int len, unsigned char *sha1)
                        else
                                nth = -1;
                }
-               if (0 <= nth)
+               if (100000000 <= nth) {
+                       at_time = nth;
+                       nth = -1;
+               } else if (0 <= nth)
                        at_time = 0;
                else {
                        char *tmp = xstrndup(str + at + 2, reflog_len);