only unlink if file exists

This commit is contained in:
Anthony Minessale 2011-09-12 16:38:48 -05:00
parent d354399c8a
commit 2fb0f8e24f
1 changed files with 1 additions and 1 deletions

View File

@ -2848,7 +2848,7 @@ static switch_status_t deliver_vm(vm_profile_t *profile,
failed:
if (del_file && file_path) {
if (del_file && file_path && switch_file_exists(file_path, pool)) {
if (unlink(file_path) != 0) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Failed to delete file [%s]\n", file_path);
}