]> git.ipfire.org Git - thirdparty/git.git/commit - t/t7004-tag.sh
builtin-tag.c: Fix two memory leaks and minor notation changes.
authorCarlos Rica <jasampler@gmail.com>
Sat, 21 Jul 2007 12:13:12 +0000 (14:13 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sat, 21 Jul 2007 23:59:33 +0000 (16:59 -0700)
commite317cfafd247b279055e9ee64a6a982043bd06e7
tree56677e8697cfa075b22f5b48b426841a9048334a
parent4d87b9c5db2590f7616fedfc0a538fc78f528e14
builtin-tag.c: Fix two memory leaks and minor notation changes.

A repeated call to read_sha1_file was not freing memory
when the buffer was allocated but returned size was zero.

Also, now the program does not allow many -F or -m options,
which was a bug too because it was not freing the memory
allocated for any previous -F or -m options.

Tests are provided for ensuring that only one option
-F or -m is given. Also, another test is shipped here,
to check that "git tag" fails when a non-existing file
is passed to the -F option, something that git-tag.sh
allowed creating the tag with an empty message.

Signed-off-by: Carlos Rica <jasampler@gmail.com>
Acked-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-tag.c
t/t7004-tag.sh