From: Christian Couder <chriscool@tuxfamily.org>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org,
Johannes Schindelin <Johannes.Schindelin@gmx.de>,
Stephan Beyer <s-beyer@gmx.net>,
Daniel Barkalow <barkalow@iabervon.org>,
Jakub Narebski <jnareb@gmail.com>
Subject: [PATCH 3/4] sequencer: free memory used in "make_patch" function
Date: Fri, 26 Jun 2009 23:08:45 +0200 [thread overview]
Message-ID: <20090626210847.3885.22240.chriscool@tuxfamily.org> (raw)
In-Reply-To: <20090626205319.3885.91532.chriscool@tuxfamily.org>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
---
builtin-sequencer--helper.c | 20 ++++++++++++--------
1 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/builtin-sequencer--helper.c b/builtin-sequencer--helper.c
index 8d32480..1dda525 100644
--- a/builtin-sequencer--helper.c
+++ b/builtin-sequencer--helper.c
@@ -18,6 +18,7 @@ static void make_patch(struct commit *commit)
struct commit_list *parents = commit->parents;
const char **args;
struct child_process chld;
+ int i;
int fd = open(PATCH_FILE, O_WRONLY | O_CREAT, 0666);
if (fd < 0)
return;
@@ -34,20 +35,22 @@ static void make_patch(struct commit *commit)
args[2] = xstrdup(sha1_to_hex(parents->item->object.sha1));
args[3] = xstrdup(sha1_to_hex(((struct object *)commit)->sha1));
} else {
- int i = 0;
int count = 1;
for (; parents; parents = parents->next)
++count;
+
+ i = 0;
args = xcalloc(count + 3, sizeof(char *));
args[i++] = "diff";
args[i++] = "--cc";
args[i++] = xstrdup(sha1_to_hex(commit->object.sha1));
for (parents = commit->parents; parents;
- parents = parents->next)
- args[i++] = xstrdup(sha1_to_hex(
- parents->item->object.sha1));
+ parents = parents->next) {
+ char *hex = sha1_to_hex(parents->item->object.sha1);
+ args[i++] = xstrdup(hex);
+ }
}
chld.argv = args;
@@ -55,11 +58,12 @@ static void make_patch(struct commit *commit)
chld.out = fd;
/* Run, ignore errors. */
- if (start_command(&chld))
- return;
- finish_command(&chld);
+ if (!start_command(&chld))
+ finish_command(&chld);
- /* TODO: free dup'ed SHAs in argument list */
+ for (i = 2; args[i]; i++)
+ free((char *)args[i]);
+ free(args);
}
/* Return a commit object of "arg" */
--
1.6.3.GIT
next prev parent reply other threads:[~2009-06-26 21:09 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-26 21:08 [PATCH 0/4] start using sequencer code to port "rebase -i" Christian Couder
2009-06-26 21:08 ` [PATCH 1/4] sequencer: add "builtin-sequencer--helper.c" Christian Couder
2009-06-26 21:08 ` [PATCH 2/4] sequencer: add "make_patch" function to save a patch Christian Couder
2009-06-28 12:13 ` Christian Couder
2009-06-26 21:08 ` Christian Couder [this message]
2009-06-26 21:08 ` [PATCH 4/4] rebase -i: use "git sequencer--helper --make-patch" Christian Couder
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090626210847.3885.22240.chriscool@tuxfamily.org \
--to=chriscool@tuxfamily.org \
--cc=Johannes.Schindelin@gmx.de \
--cc=barkalow@iabervon.org \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jnareb@gmail.com \
--cc=s-beyer@gmx.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).