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