Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinquize <linquize@yahoo.com.hk>2013-05-10 17:42:22 +0400
committerLinquize <linquize@yahoo.com.hk>2013-05-11 16:13:26 +0400
commite583334c00e80274866c87495e6ed2a40ec0a6f6 (patch)
tree8bc5e13e212bee8bd852d51ebf7121b24d6b073d /src/push.c
parentb6cc559a78a073f2aadd179fe40c09be7318c898 (diff)
Fix broken build when MSVC SDL checks is enabled
Diffstat (limited to 'src/push.c')
-rw-r--r--src/push.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/push.c b/src/push.c
index 0499d8648..452d71789 100644
--- a/src/push.c
+++ b/src/push.c
@@ -180,7 +180,7 @@ int git_push_update_tips(git_push *push)
git_buf remote_ref_name = GIT_BUF_INIT;
size_t i, j;
git_refspec *fetch_spec;
- push_spec *push_spec;
+ push_spec *push_spec = NULL;
git_reference *remote_ref;
push_status *status;
int error = 0;