Make the filter_spec string a strbuf rather than a raw C string. A
future patch will need to grow this string dynamically.

Signed-off-by: Matthew DeVore <matv...@google.com>
---
 builtin/rev-list.c            |  2 +-
 list-objects-filter-options.c | 16 ++++++++++------
 list-objects-filter-options.h |  2 +-
 upload-pack.c                 |  2 +-
 4 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/builtin/rev-list.c b/builtin/rev-list.c
index 9f31837d30..7137f13a74 100644
--- a/builtin/rev-list.c
+++ b/builtin/rev-list.c
@@ -460,21 +460,21 @@ int cmd_rev_list(int argc, const char **argv, const char 
*prefix)
                        continue;
                }
 
                if (skip_prefix(arg, ("--" CL_ARG__FILTER "="), &arg)) {
                        parse_list_objects_filter(&filter_options, arg);
                        if (filter_options.choice && !revs.blob_objects)
                                die(_("object filtering requires --objects"));
                        if (filter_options.choice == LOFC_SPARSE_OID &&
                            !filter_options.sparse_oid_value)
                                die(_("invalid sparse value '%s'"),
-                                   filter_options.filter_spec);
+                                   filter_options.filter_spec.buf);
                        continue;
                }
                if (!strcmp(arg, ("--no-" CL_ARG__FILTER))) {
                        list_objects_filter_set_no_filter(&filter_options);
                        continue;
                }
                if (!strcmp(arg, "--filter-print-omitted")) {
                        arg_print_omitted = 1;
                        continue;
                }
diff --git a/list-objects-filter-options.c b/list-objects-filter-options.c
index e8132b811e..5687425847 100644
--- a/list-objects-filter-options.c
+++ b/list-objects-filter-options.c
@@ -203,21 +203,22 @@ cleanup:
        }
        return result;
 }
 
 int parse_list_objects_filter(struct list_objects_filter_options 
*filter_options,
                              const char *arg)
 {
        struct strbuf buf = STRBUF_INIT;
        if (filter_options->choice)
                die(_("multiple filter-specs cannot be combined"));
-       filter_options->filter_spec = strdup(arg);
+       strbuf_init(&filter_options->filter_spec, 0);
+       strbuf_addstr(&filter_options->filter_spec, arg);
        if (gently_parse_list_objects_filter(filter_options, arg, &buf))
                die("%s", buf.buf);
        return 0;
 }
 
 int opt_parse_list_objects_filter(const struct option *opt,
                                  const char *arg, int unset)
 {
        struct list_objects_filter_options *filter_options = opt->value;
 
@@ -226,39 +227,39 @@ int opt_parse_list_objects_filter(const struct option 
*opt,
                return 0;
        }
 
        return parse_list_objects_filter(filter_options, arg);
 }
 
 void expand_list_objects_filter_spec(
        const struct list_objects_filter_options *filter,
        struct strbuf *expanded_spec)
 {
-       strbuf_init(expanded_spec, strlen(filter->filter_spec));
+       strbuf_init(expanded_spec, 0);
        if (filter->choice == LOFC_BLOB_LIMIT)
                strbuf_addf(expanded_spec, "blob:limit=%lu",
                            filter->blob_limit_value);
        else if (filter->choice == LOFC_TREE_DEPTH)
                strbuf_addf(expanded_spec, "tree:%lu",
                            filter->tree_exclude_depth);
        else
-               strbuf_addstr(expanded_spec, filter->filter_spec);
+               strbuf_addstr(expanded_spec, filter->filter_spec.buf);
 }
 
 void list_objects_filter_release(
        struct list_objects_filter_options *filter_options)
 {
        size_t sub;
 
        if (!filter_options)
                return;
-       free(filter_options->filter_spec);
+       strbuf_release(&filter_options->filter_spec);
        free(filter_options->sparse_oid_value);
        free(filter_options->sparse_path_value);
        for (sub = 0; sub < filter_options->sub_nr; sub++)
                list_objects_filter_release(&filter_options->sub[sub]);
        free(filter_options->sub);
        memset(filter_options, 0, sizeof(*filter_options));
 }
 
 void partial_clone_register(
        const char *remote,
@@ -278,32 +279,35 @@ void partial_clone_register(
        git_config_set("core.repositoryformatversion", "1");
        git_config_set("extensions.partialclone", remote);
 
        repository_format_partial_clone = xstrdup(remote);
 
        /*
         * Record the initial filter-spec in the config as
         * the default for subsequent fetches from this remote.
         */
        core_partial_clone_filter_default =
-               xstrdup(filter_options->filter_spec);
+               xstrdup(filter_options->filter_spec.buf);
        git_config_set("core.partialclonefilter",
                       core_partial_clone_filter_default);
 }
 
 void partial_clone_get_default_filter_spec(
        struct list_objects_filter_options *filter_options)
 {
        struct strbuf errbuf = STRBUF_INIT;
 
        /*
         * Parse default value, but silently ignore it if it is invalid.
         */
        if (!core_partial_clone_filter_default)
                return;
 
-       filter_options->filter_spec = strdup(core_partial_clone_filter_default);
+       if (!filter_options->filter_spec.buf)
+               strbuf_init(&filter_options->filter_spec, 0);
+       strbuf_addstr(&filter_options->filter_spec,
+                     core_partial_clone_filter_default);
        gently_parse_list_objects_filter(filter_options,
                                         core_partial_clone_filter_default,
                                         &errbuf);
        strbuf_release(&errbuf);
 }
diff --git a/list-objects-filter-options.h b/list-objects-filter-options.h
index 8f08ed74a1..e1e23fd191 100644
--- a/list-objects-filter-options.h
+++ b/list-objects-filter-options.h
@@ -19,21 +19,21 @@ enum list_objects_filter_choice {
 };
 
 struct list_objects_filter_options {
        /*
         * 'filter_spec' is the raw argument value given on the command line
         * or protocol request.  (The part after the "--keyword=".)  For
         * commands that launch filtering sub-processes, or for communication
         * over the network, don't use this value; use the result of
         * expand_list_objects_filter_spec() instead.
         */
-       char *filter_spec;
+       struct strbuf filter_spec;
 
        /*
         * 'choice' is determined by parsing the filter-spec.  This indicates
         * the filtering algorithm to use.
         */
        enum list_objects_filter_choice choice;
 
        /*
         * Choice is LOFC_DISABLED because "--no-filter" was requested.
         */
diff --git a/upload-pack.c b/upload-pack.c
index d2ea5eb20d..2cdd499f28 100644
--- a/upload-pack.c
+++ b/upload-pack.c
@@ -133,21 +133,21 @@ static void create_pack_file(const struct object_array 
*have_obj,
 
        argv_array_push(&pack_objects.args, "--stdout");
        if (shallow_nr)
                argv_array_push(&pack_objects.args, "--shallow");
        if (!no_progress)
                argv_array_push(&pack_objects.args, "--progress");
        if (use_ofs_delta)
                argv_array_push(&pack_objects.args, "--delta-base-offset");
        if (use_include_tag)
                argv_array_push(&pack_objects.args, "--include-tag");
-       if (filter_options.filter_spec) {
+       if (filter_options.filter_spec.len) {
                struct strbuf expanded_filter_spec = STRBUF_INIT;
                expand_list_objects_filter_spec(&filter_options,
                                                &expanded_filter_spec);
                if (pack_objects.use_shell) {
                        struct strbuf buf = STRBUF_INIT;
                        sq_quote_buf(&buf, expanded_filter_spec.buf);
                        argv_array_pushf(&pack_objects.args, "--filter=%s", 
buf.buf);
                        strbuf_release(&buf);
                } else {
                        argv_array_pushf(&pack_objects.args, "--filter=%s",
-- 
2.17.1

Reply via email to