Commit f0593a6b by Edward Thomson

Merge pull request #2991 from sba1/fix-uninitialized-data-access-remote-update-tips

Initialize refs vector in git_remote_update_tips().
parents 9bbc8f35 cdedef40
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment