summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-01-11 19:11:28 -0800
committerJunio C Hamano <gitster@pobox.com>2012-01-11 19:11:28 -0800
commit0e1cfc52de002e2d9b0e6562e8672fee3bf45a67 (patch)
tree4222932548af1211042b658263e7892d6e6f8cf5
parent7e521640c80b4bb871bca7a9259621a7abb303e7 (diff)
parent113e828d3893f31ef72dd8287e95da9fa2287110 (diff)
downloadgit-0e1cfc52de002e2d9b0e6562e8672fee3bf45a67.tar.gz
Merge branch 'maint'
* maint: attr: fix leak in free_attr_elem t2203: fix wrong commit command
-rw-r--r--attr.c1
-rwxr-xr-xt/t2203-add-intent.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/attr.c b/attr.c
index 96eda0ef07..303751f6c2 100644
--- a/attr.c
+++ b/attr.c
@@ -301,6 +301,7 @@ static void free_attr_elem(struct attr_stack *e)
}
free(a);
}
+ free(e->attrs);
free(e);
}
diff --git a/t/t2203-add-intent.sh b/t/t2203-add-intent.sh
index 58a329961e..25435290a7 100755
--- a/t/t2203-add-intent.sh
+++ b/t/t2203-add-intent.sh
@@ -41,7 +41,7 @@ test_expect_success 'cannot commit with i-t-a entry' '
echo frotz >nitfol &&
git add rezrov &&
git add -N nitfol &&
- test_must_fail git commit
+ test_must_fail git commit -m initial
'
test_expect_success 'can commit with an unrelated i-t-a entry in index' '