]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
check return from unlink.
authorMichael Jerris <mike@jerris.com>
Fri, 4 Jan 2008 01:49:26 +0000 (01:49 +0000)
committerMichael Jerris <mike@jerris.com>
Fri, 4 Jan 2008 01:49:26 +0000 (01:49 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7080 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_voicemail/mod_voicemail.c

index 9b00e2d68a705dfb349fc307c0f998ab84eb9e28..ec3ade8e4916e7f97063669737b6942fc0a12f09 100644 (file)
@@ -903,7 +903,9 @@ record_file:
                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;