DORMANTno replies

[PATCH 12/14] rev-list.c: Initialise variables to suppress msvc warnings

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\builtin\rev-list.c(400) : warning C4700: uninitialized \
        local variable 'reaches' used
    ...\git\builtin\rev-list.c(400) : warning C4700: uninitialized \
        local variable 'all' used

In order to suppress the warnings, we simply initialise the
variables to zero.

Signed-off-by: Ramsay Jones <redacted>
---
 builtin/rev-list.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/builtin/rev-list.c b/builtin/rev-list.c
index ba27d39..e28695f 100644
--- a/builtin/rev-list.c
+++ b/builtin/rev-list.c
@@ -397,7 +397,7 @@ int cmd_rev_list(int argc, const char **argv, const char *prefix)
 		mark_edges_uninteresting(revs.commits, &revs, show_edge);
 
 	if (bisect_list) {
-		int reaches = reaches, all = all;
+		int reaches = 0, all = 0;
 
 		revs.commits = find_bisection(revs.commits, &reaches, &all,
 					      bisect_find_all);
-- 
1.7.3
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help