git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] builtin/apply: free patch when parse_chunk() fails
@ 2016-03-16 19:35 Christian Couder
  2016-03-31 22:29 ` Christian Couder
  2016-04-01 17:23 ` Junio C Hamano
  0 siblings, 2 replies; 5+ messages in thread
From: Christian Couder @ 2016-03-16 19:35 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano, Christian Couder

When parse_chunk() fails it can return -1, for example
when find_header() doesn't find a patch header.

In this case it's better in apply_patch() to free the
"struct patch" that we just allocated instead of
leaking it.

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
---
 builtin/apply.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/builtin/apply.c b/builtin/apply.c
index 42c610e..bf78282 100644
--- a/builtin/apply.c
+++ b/builtin/apply.c
@@ -4373,8 +4373,10 @@ static int apply_patch(int fd, const char *filename, int options)
 		patch->inaccurate_eof = !!(options & INACCURATE_EOF);
 		patch->recount =  !!(options & RECOUNT);
 		nr = parse_chunk(buf.buf + offset, buf.len - offset, patch);
-		if (nr < 0)
+		if (nr < 0) {
+			free_patch(patch);
 			break;
+		}
 		if (apply_in_reverse)
 			reverse_patches(patch);
 		if (use_patch(patch)) {
-- 
2.8.0.rc2.54.g810e8ee

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-04-01 17:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-16 19:35 [PATCH] builtin/apply: free patch when parse_chunk() fails Christian Couder
2016-03-31 22:29 ` Christian Couder
2016-03-31 22:56   ` Junio C Hamano
2016-03-31 23:58     ` Christian Couder
2016-04-01 17:23 ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).