Commit e285bdc9 by nulltoken

test_helpers: fix unepextected closing of file on error

parent 0d0fa7c3
...@@ -197,7 +197,8 @@ int copy_file(const char *src, const char *dst) ...@@ -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;
} }
......
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