mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-05 17:12:51 +00:00
test_helpers: fix unepextected closing of file on error
This commit is contained in:
parent
0d0fa7c368
commit
e285bdc93b
@ -197,7 +197,8 @@ int copy_file(const char *src, const char *dst)
|
|||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
git_buf_free(&source_buf);
|
git_buf_free(&source_buf);
|
||||||
p_close(dst_fd);
|
if (dst_fd >= 0)
|
||||||
|
p_close(dst_fd);
|
||||||
|
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user