DORMANTno replies

[PATCH 13/14] transport.c: Initialise variable to suppress msvc warning

From: Ramsay Jones <hidden>
Date: 2016-06-15 22:50:10
Subsystem: the rest · Maintainer: Linus Torvalds

The msvc compiler thinks that a variable could be used while
uninitialised and issues the following warning:

    ...\git\transport.c(107) : warning C4700: uninitialized local \
        variable 'cmp' used

In order to suppress the warning, we simply initialise the
variable to zero.

Signed-off-by: Ramsay Jones <redacted>
---
 transport.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/transport.c b/transport.c
index 0078660..1dca6d4 100644
--- a/transport.c
+++ b/transport.c
@@ -104,7 +104,7 @@ static void insert_packed_refs(const char *packed_refs, struct ref **list)
 		return;
 
 	for (;;) {
-		int cmp = cmp, len;
+		int cmp = 0, len;
 
 		if (!fgets(buffer, sizeof(buffer), f)) {
 			fclose(f);
-- 
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