No need to remove the old name after a save-with-move; it was, well, *moved*.

Change-Id: Ic76eee870aff69b9daaf80d99fa619bf762258a1
Reviewed-on: https://code.wireshark.org/review/25058
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2017-12-28 22:10:59 -08:00
parent 9bf40d4a6e
commit c791549a77
1 changed files with 1 additions and 1 deletions

2
file.c
View File

@ -4477,7 +4477,7 @@ cf_save_records(capture_file *cf, const char *fname, guint save_format,
/* If this was a temporary file, and we didn't do the save by doing
a move, so the tempoary file is still around under its old name,
remove it. */
if (cf->is_tempfile) {
if (cf->is_tempfile && how_to_save != SAVE_WITH_MOVE) {
/* If this fails, there's not much we can do, so just ignore errors. */
ws_unlink(cf->filename);
}