]> git.ipfire.org Git - thirdparty/git.git/commit - read-cache.c
add_to_index(): free unused cache-entry
authorJunio C Hamano <gitster@pobox.com>
Mon, 23 Mar 2015 17:58:00 +0000 (10:58 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 23 Mar 2015 18:12:59 +0000 (11:12 -0700)
commit067178ed8a7822e6bc88ad606b707fc33658e6fc
tree26106b0bfde7d0a310d68f6d7089f332877310a3
parent5d0b9bf86d98b690e443b266e95add7fab334f14
add_to_index(): free unused cache-entry

We allocate a cache-entry pretty early in the function and then
decide either not to do anything when we are pretending to add, or
add it and then get an error (another possibility is obviously to
succeed).

When pretending or failing to add, we forgot to free the
cache-entry.

Noticed during a discussion on Stefan's patch to change the coding
style without fixing the issue ;-)

Signed-off-by: Junio C Hamano <gitster@pobox.com>
read-cache.c