git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7080
d0543943-73ff-0310-b7d9-
9358b9ac24b2
if ((*message_len = fh.sample_count / read_codec->implementation->actual_samples_per_second) < profile->min_record_len) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Message is less than minimum record length: %d, discarding it.\n",
profile->min_record_len);
- unlink(file_path);
+ if (unlink(file_path) != 0) {
+ switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "failed to delete file [%s]\n", file_path);
+ }
goto record_file;
} else {
status = SWITCH_STATUS_SUCCESS;