Skip to content

Commit

Permalink
Merge branch 'jk/warn-on-object-refname-ambiguity'
Browse files Browse the repository at this point in the history
* jk/warn-on-object-refname-ambiguity:
  rev-list: disable object/refname ambiguity check with --stdin
  cat-file: restore warn_on_object_refname_ambiguity flag
  cat-file: fix a minor memory leak in batch_objects
  cat-file: refactor error handling of batch_objects
  • Loading branch information
Junio C Hamano committed Mar 25, 2014
2 parents ec8cd4f + 4c30d50 commit d4c6e9f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
15 changes: 9 additions & 6 deletions builtin/cat-file.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,8 @@ static int batch_objects(struct batch_options *opt)
{
struct strbuf buf = STRBUF_INIT;
struct expand_data data;
int save_warning;
int retval = 0;

if (!opt->format)
opt->format = "%(objectname) %(objecttype) %(objectsize)";
Expand Down Expand Up @@ -297,11 +299,10 @@ static int batch_objects(struct batch_options *opt)
* warn) ends up dwarfing the actual cost of the object lookups
* themselves. We can work around it by just turning off the warning.
*/
save_warning = warn_on_object_refname_ambiguity;
warn_on_object_refname_ambiguity = 0;

while (strbuf_getline(&buf, stdin, '\n') != EOF) {
int error;

if (data.split_on_whitespace) {
/*
* Split at first whitespace, tying off the beginning
Expand All @@ -316,12 +317,14 @@ static int batch_objects(struct batch_options *opt)
data.rest = p;
}

error = batch_one_object(buf.buf, opt, &data);
if (error)
return error;
retval = batch_one_object(buf.buf, opt, &data);
if (retval)
break;
}

return 0;
strbuf_release(&buf);
warn_on_object_refname_ambiguity = save_warning;
return retval;
}

static const char * const cat_file_usage[] = {
Expand Down
6 changes: 6 additions & 0 deletions revision.c
Original file line number Diff line number Diff line change
Expand Up @@ -1575,6 +1575,10 @@ static void read_revisions_from_stdin(struct rev_info *revs,
{
struct strbuf sb;
int seen_dashdash = 0;
int save_warning;

save_warning = warn_on_object_refname_ambiguity;
warn_on_object_refname_ambiguity = 0;

strbuf_init(&sb, 1000);
while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) {
Expand All @@ -1596,7 +1600,9 @@ static void read_revisions_from_stdin(struct rev_info *revs,
}
if (seen_dashdash)
read_pathspec_from_stdin(revs, &sb, prune);

strbuf_release(&sb);
warn_on_object_refname_ambiguity = save_warning;
}

static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
Expand Down

0 comments on commit d4c6e9f

Please sign in to comment.