diff options
| author | Pierre-Olivier Latour <pol@mac.com> | 2014-10-26 10:30:05 -0700 |
|---|---|---|
| committer | Pierre-Olivier Latour <pol@mac.com> | 2014-10-27 09:19:07 -0700 |
| commit | 64bcf567c30af6162f756f661c9f2a14f861deb4 (patch) | |
| tree | 2e9906f6f6998b76ef8c2ffe8cf48e5f6b60bff8 /src/remote.c | |
| parent | ea66215d87a9cb588d01040f3191236babdbd53f (diff) | |
| download | libgit2-64bcf567c30af6162f756f661c9f2a14f861deb4.tar.gz | |
Fixed potential crash with uninitialized variables
Diffstat (limited to 'src/remote.c')
| -rw-r--r-- | src/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote.c b/src/remote.c index 4629175d0..0ae377e47 100644 --- a/src/remote.c +++ b/src/remote.c @@ -1691,7 +1691,7 @@ int git_remote_rename(git_strarray *out, git_repository *repo, const char *name, { int error; git_vector problem_refspecs = GIT_VECTOR_INIT; - git_remote *remote; + git_remote *remote = NULL; assert(out && repo && name && new_name); |
