diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-01-12 04:11:00 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-01-12 04:11:00 +0100 |
commit | afb6b561e3dad13df5d9df9731751a3d310c0854 (patch) | |
tree | 9c79be5a0cab9f0ee7994334c66e2e2290348a60 /attr.c | |
parent | Prepare for 1.7.7.6 (diff) | |
parent | attr: fix leak in free_attr_elem (diff) | |
download | git-afb6b561e3dad13df5d9df9731751a3d310c0854.tar.xz git-afb6b561e3dad13df5d9df9731751a3d310c0854.zip |
Merge branch 'maint-1.7.6' into maint-1.7.7
* maint-1.7.6:
attr: fix leak in free_attr_elem
t2203: fix wrong commit command
Diffstat (limited to 'attr.c')
-rw-r--r-- | attr.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -301,6 +301,7 @@ static void free_attr_elem(struct attr_stack *e) } free(a); } + free(e->attrs); free(e); } |