OSDN Git Service

Active_nr is unsigned, hence can't be < 0
authorPierre Habouzit <madcoder@debian.org>
Thu, 7 Jun 2007 20:44:59 +0000 (22:44 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 8 Jun 2007 09:37:18 +0000 (02:37 -0700)
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1_name.c

index 7df01af..858f08c 100644 (file)
@@ -682,8 +682,6 @@ int get_sha1_with_mode(const char *name, unsigned char *sha1, unsigned *mode)
                namelen = namelen - (cp - name);
                if (!active_cache)
                        read_cache();
-               if (active_nr < 0)
-                       return -1;
                pos = cache_name_pos(cp, namelen);
                if (pos < 0)
                        pos = -pos - 1;