X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=builtin-tag.c;h=b13fa34d8c59a9226599ba10b4d679f41ad230b0;hb=f285a2d7ed6548666989406de8f0e7233eb84368;hp=f2853d08c77368b37b40c7ea51f5a124208d385f;hpb=7e4ad908721445b073f3b4ecad55bbd78f032cdc;p=git.git diff --git a/builtin-tag.c b/builtin-tag.c index f2853d08c..b13fa34d8 100644 --- a/builtin-tag.c +++ b/builtin-tag.c @@ -338,7 +338,7 @@ static int parse_msg_arg(const struct option *opt, const char *arg, int unset) int cmd_tag(int argc, const char **argv, const char *prefix) { - struct strbuf buf; + struct strbuf buf = STRBUF_INIT; unsigned char object[20], prev[20]; char ref[PATH_MAX]; const char *object_ref, *tag; @@ -388,7 +388,6 @@ int cmd_tag(int argc, const char **argv, const char *prefix) if (verify) return for_each_tag_name(argv, verify_tag); - strbuf_init(&buf, 0); if (msg.given || msgfile) { if (msg.given && msgfile) die("only one -F or -m option is allowed.");