Merge branch 'jk/loose-object-fsck'
authorJunio C Hamano <gitster@pobox.com>
Mon, 24 Apr 2017 05:07:50 +0000 (22:07 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 24 Apr 2017 05:07:50 +0000 (22:07 -0700)
Code cleanup.

* jk/loose-object-fsck:
sha1_file: remove an used fd variable

sha1_file.c
index 1577e2d7dd4f38462b7b33c02b888eed3f4ca2c6..59a4ed2ed32336b41ab8f3b1d4aca30f045aa084 100644 (file)
@@ -3972,7 +3972,6 @@ int read_loose_object(const char *path,
                      void **contents)
 {
        int ret = -1;
-       int fd = -1;
        void *map = NULL;
        unsigned long mapsize;
        git_zstream stream;
@@ -4022,7 +4021,5 @@ int read_loose_object(const char *path,
 out:
        if (map)
                munmap(map, mapsize);
-       if (fd >= 0)
-               close(fd);
        return ret;
 }