[PATCH 08/14] submodule.c: Initialise variables to suppress msvc warnings
From: Ramsay Jones <hidden>
Date: 2016-06-15 22:50:10
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Ramsay Jones <hidden>
Date: 2016-06-15 22:50:10
Subsystem:
the rest · Maintainer:
Linus Torvalds
The msvc compiler thinks that two variables could be used
while uninitialised and issues the following warnings:
...\git\submodule.c(147) : warning C4700: uninitialized local \
variable 'left' used
...\git\submodule.c(147) : warning C4700: uninitialized local \
variable 'right' used
In order to suppress the warnings, we simply initialise the
pointer variables to NULL.
Signed-off-by: Ramsay Jones <redacted>
---
submodule.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/submodule.c b/submodule.c
index 91a4758..eef498a 100644
--- a/submodule.c
+++ b/submodule.c@@ -144,7 +144,7 @@ void show_submodule_summary(FILE *f, const char *path, const char *del, const char *add, const char *reset) { struct rev_info rev; - struct commit *commit, *left = left, *right = right; + struct commit *commit, *left = NULL, *right = NULL; struct commit_list *merge_bases, *list; const char *message = NULL; struct strbuf sb = STRBUF_INIT;
--
1.7.3