mirror of
https://github.com/git/git.git
synced 2024-11-24 10:26:17 +08:00
Merge branch 'jk/maint-strbuf-missing-init' into maint
* jk/maint-strbuf-missing-init: commit, merge: initialize static strbuf
This commit is contained in:
commit
b42e81afe2
@ -103,7 +103,7 @@ static enum commit_whence whence;
|
||||
static int use_editor = 1, include_status = 1;
|
||||
static int show_ignored_in_status;
|
||||
static const char *only_include_assumed;
|
||||
static struct strbuf message;
|
||||
static struct strbuf message = STRBUF_INIT;
|
||||
|
||||
static int null_termination;
|
||||
static enum {
|
||||
|
@ -48,7 +48,7 @@ static int show_diffstat = 1, shortlog_len, squash;
|
||||
static int option_commit = 1, allow_fast_forward = 1;
|
||||
static int fast_forward_only, option_edit;
|
||||
static int allow_trivial = 1, have_message;
|
||||
static struct strbuf merge_msg;
|
||||
static struct strbuf merge_msg = STRBUF_INIT;
|
||||
static struct commit_list *remoteheads;
|
||||
static struct strategy **use_strategies;
|
||||
static size_t use_strategies_nr, use_strategies_alloc;
|
||||
|
Loading…
Reference in New Issue
Block a user