summaryrefslogtreecommitdiff
path: root/diffcore-pathspec.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-05-27 22:50:30 (GMT)
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-29 18:17:43 (GMT)
commit226406f693013ea3eadab258cb5fc9d8e83df916 (patch)
treec08246838de338afaad76cf758d5099395bae36d /diffcore-pathspec.c
parenta00d7d106aa333c4b4d0095f58e05c0c4621bbc2 (diff)
downloadgit-226406f693013ea3eadab258cb5fc9d8e83df916.zip
git-226406f693013ea3eadab258cb5fc9d8e83df916.tar.gz
git-226406f693013ea3eadab258cb5fc9d8e83df916.tar.bz2
[PATCH] Introduce diff_free_filepair() funcion.
This introduces a new function to free a common data structure, and plugs some leaks. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'diffcore-pathspec.c')
-rw-r--r--diffcore-pathspec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/diffcore-pathspec.c b/diffcore-pathspec.c
index fd11822..c460b2e 100644
--- a/diffcore-pathspec.c
+++ b/diffcore-pathspec.c
@@ -59,7 +59,7 @@ void diffcore_pathspec(const char **pathspec)
matches_pathspec(p->two->path, spec, speccnt))
diff_q(&outq, p);
else
- free(p);
+ diff_free_filepair(p);
}
free(q->queue);
*q = outq;