unlink a previous file before its extracted
This commit is contained in:
parent
923dd79af7
commit
afc01cd485
@ -53,7 +53,8 @@ extern void data_extract_all(archive_handle_t *archive_handle)
|
|||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
/* Regular file */
|
/* Regular file */
|
||||||
dst_fd = bb_xopen(file_header->name, O_WRONLY | O_CREAT);
|
unlink(file_header->name);
|
||||||
|
dst_fd = bb_xopen(file_header->name, O_WRONLY | O_CREAT | O_EXCL);
|
||||||
archive_copy_file(archive_handle, dst_fd);
|
archive_copy_file(archive_handle, dst_fd);
|
||||||
close(dst_fd);
|
close(dst_fd);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user