Initialize refs vector in git_remote_update_tips().

Otherwise, bailing out early when ls_to_vector() fails accesses
uninitialized memory.
This commit is contained in:
Sebastian Bauer 2015-03-17 21:38:58 +01:00
parent 9bbc8f350b
commit cdedef4061

View File

@ -1458,7 +1458,7 @@ int git_remote_update_tips(
const char *reflog_message)
{
git_refspec *spec, tagspec;
git_vector refs;
git_vector refs = GIT_VECTOR_INIT;
int error;
size_t i;