test_helpers: fix unepextected closing of file on error

This commit is contained in:
nulltoken 2012-03-21 08:10:40 +01:00
parent 0d0fa7c368
commit e285bdc93b

View File

@ -197,7 +197,8 @@ int copy_file(const char *src, const char *dst)
cleanup:
git_buf_free(&source_buf);
p_close(dst_fd);
if (dst_fd >= 0)
p_close(dst_fd);
return error;
}