Fixed a leak in read-tree
authorPetr Baudis <pasky@ucw.cz>
Wed, 11 May 2005 21:16:23 +0000 (23:16 +0200)
committerPetr Baudis <xpasky@machine.sinus.cz>
Wed, 11 May 2005 21:16:23 +0000 (23:16 +0200)
unpack_tree() would not free the tree object it has read.

read-tree.c

index f8dc509..f6298e5 100644 (file)
@@ -11,11 +11,14 @@ static int unpack_tree(unsigned char *sha1)
 {
        void *buffer;
        unsigned long size;
+       int ret;
 
        buffer = read_object_with_reference(sha1, "tree", &size, 0);
        if (!buffer)
                return -1;
-       return read_tree(buffer, size, stage);
+       ret = read_tree(buffer, size, stage);
+       free(buffer);
+       return ret;
 }
 
 static char *lockfile_name;