[asterisk-commits] coreyfarrell: branch 13 r427089 - in /branches/13: ./ apps/app_voicemail.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sun Nov 2 20:34:15 CST 2014


Author: coreyfarrell
Date: Sun Nov  2 20:34:13 2014
New Revision: 427089

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=427089
Log:
Fix compile error caused by review 4138

There is no procedure called ast_closeframe, fix code to use
ast_closestream.

Reported By: Matt Jordan
........

Merged revisions 427087 from http://svn.asterisk.org/svn/asterisk/branches/11
........

Merged revisions 427088 from http://svn.asterisk.org/svn/asterisk/branches/12

Modified:
    branches/13/   (props changed)
    branches/13/apps/app_voicemail.c

Propchange: branches/13/
------------------------------------------------------------------------------
Binary property 'branch-12-merged' - no diff available.

Modified: branches/13/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/apps/app_voicemail.c?view=diff&rev=427089&r1=427088&r2=427089
==============================================================================
--- branches/13/apps/app_voicemail.c (original)
+++ branches/13/apps/app_voicemail.c Sun Nov  2 20:34:13 2014
@@ -6158,7 +6158,7 @@
 				ast_log(LOG_ERROR,"Unable to determine sample rate of recording %s\n", recdata->recording_file);
 			}
 		}
-		ast_closeframe(recording_fs);
+		ast_closestream(recording_fs);
 	}
 
 	/* If the duration was below the minimum duration for the user, let's just drop the whole thing now */




More information about the asterisk-commits mailing list