From: Pranit Bauva <pranit.bauva@xxxxxxxxx> Dequoting the arguments was introduced in 25b48b5c to port the function `bisect_next()` but after the `bisect_replay()` porting, the dequoting is carried out itself when it passes the arguments to `bisect_start()` in a simpler way thus dequoting again isn't required. So remove the extra "dequoting" code introduced by the commit 25b48b5c. Mentored-by: Lars Schneider <larsxschneider@xxxxxxxxx> Mentored-by: Christian Couder <chriscool@xxxxxxxxxxxxx> Mentored-by: Johannes Schindelin <Johannes.Schindelin@xxxxxx> Signed-off-by: Pranit Bauva <pranit.bauva@xxxxxxxxx> Signed-off-by: Tanushree Tumane <tanushreetumane@xxxxxxxxx> --- builtin/bisect--helper.c | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/builtin/bisect--helper.c b/builtin/bisect--helper.c index 4b4401005d..4eb2580ba8 100644 --- a/builtin/bisect--helper.c +++ b/builtin/bisect--helper.c @@ -558,11 +558,6 @@ static int bisect_auto_next(struct bisect_terms *terms, const char *prefix) return 0; } -static inline char *dequote_arg(const char *arg) -{ - return arg[0] != '\'' ? xstrdup(arg) : sq_dequote(xstrdup(arg)); -} - static int bisect_start(struct bisect_terms *terms, int no_checkout, const char **argv, int argc) { @@ -583,22 +578,16 @@ static int bisect_start(struct bisect_terms *terms, int no_checkout, * Check for one bad and then some good revisions */ for (i = 0; i < argc; i++) { - char *arg = dequote_arg(argv[i]); - if (!strcmp(arg, "--")) { + if (!strcmp(argv[i], "--")) { has_double_dash = 1; - free(arg); break; } - free(arg); } for (i = 0; i < argc; i++) { - char *dequoted = dequote_arg(argv[i]); - const char *arg = dequoted; - - if (!strcmp(arg, "--")) { - free(dequoted); + const char *arg = argv[i]; + if (!strcmp(argv[i], "--")) { break; } else if (!strcmp(arg, "--no-checkout")) { no_checkout = 1; @@ -606,7 +595,7 @@ static int bisect_start(struct bisect_terms *terms, int no_checkout, !strcmp(arg, "--term-old")) { must_write_terms = 1; free((void *) terms->term_good); - terms->term_good = dequote_arg(argv[++i]); + terms->term_good = xstrdup(argv[++i]); } else if (skip_prefix(arg, "--term-good=", &arg) || skip_prefix(arg, "--term-old=", &arg)) { must_write_terms = 1; @@ -616,7 +605,7 @@ static int bisect_start(struct bisect_terms *terms, int no_checkout, !strcmp(arg, "--term-new")) { must_write_terms = 1; free((void *) terms->term_bad); - terms->term_bad = dequote_arg(argv[++i]); + terms->term_bad = xstrdup(argv[++i]); } else if (skip_prefix(arg, "--term-bad=", &arg) || skip_prefix(arg, "--term-new=", &arg)) { must_write_terms = 1; @@ -625,7 +614,6 @@ static int bisect_start(struct bisect_terms *terms, int no_checkout, } else if (starts_with(arg, "--") && !one_of(arg, "--term-good", "--term-bad", NULL)) { error(_("unrecognized option: '%s'"), arg); - free(dequoted); return -1; } else { char *commit_id = xstrfmt("%s^{commit}", arg); @@ -633,14 +621,12 @@ static int bisect_start(struct bisect_terms *terms, int no_checkout, error(_("'%s' does not appear to be a valid " "revision"), arg); free(commit_id); - free(dequoted); return -1; } string_list_append(&revs, oid_to_hex(&oid)); free(commit_id); } - free(dequoted); } pathspec_pos = i; -- gitgitgadget