From 35230d06b8b2d5bd7a472b93c70a9d8e992ff4b7 Mon Sep 17 00:00:00 2001
From: Nico von Geyso <Nico.Geyso@FU-Berlin.de>
Date: Sun, 17 Feb 2013 12:54:32 +0100
Subject: [PATCH] initialize py_stats to NULL

---
 src/remote.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/remote.c b/src/remote.c
index 175786f..b7a6f08 100644
--- a/src/remote.c
+++ b/src/remote.c
@@ -184,7 +184,7 @@ PyDoc_STRVAR(Remote_fetch__doc__,
 PyObject *
 Remote_fetch(Remote *self, PyObject *args)
 {
-  PyObject* py_stats;
+  PyObject* py_stats = NULL;
   const git_transfer_progress *stats;
   int err;