Commit a5a0347d by abyss7 Committed by Patrick Steinhardt

Fix leak in index.c

(cherry picked from commit 581d5492)
parent 0fefd899
......@@ -1774,7 +1774,8 @@ int git_index_conflict_add(git_index *index,
if (entries[i] && !valid_filemode(entries[i]->mode)) {
giterr_set(GITERR_INDEX, "invalid filemode for stage %d entry",
i + 1);
return -1;
ret = -1;
goto on_error;
}
}
......
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