Hi Ram, From: Ramkumar Ramachandra <artagnon@xxxxxxxxx> > Hi Christian, > > Christian Couder wrote: >> diff --git a/builtin/revert.c b/builtin/revert.c >> index 82d1bf8..5f82a84 100644 >> --- a/builtin/revert.c >> +++ b/builtin/revert.c >> @@ -217,6 +217,7 @@ int cmd_revert(int argc, const char **argv, const char *prefix) >> git_config(git_default_config, NULL); >> parse_args(argc, argv, &opts); >> res = sequencer_pick_revisions(&opts); >> + free(opts.revs); >> if (res < 0) >> die(_("revert failed")); >> return res; >> @@ -232,6 +233,7 @@ int cmd_cherry_pick(int argc, const char **argv, const char *prefix) >> git_config(git_default_config, NULL); >> parse_args(argc, argv, &opts); >> res = sequencer_pick_revisions(&opts); >> + free(opts.revs); >> if (res < 0) >> die(_("cherry-pick failed")); >> return res; > > Technically, memory is allocated to both opts->revs and opts->xopts in > parse_args(). Why not free both? I didn't see any leak with opts->xopts but I will have a look. Thanks, Christian. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html