[svn-commits] qwell: branch 1.4 r64761 - in /branches/1.4: ./ apps/app_voicemail.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu May 17 09:53:27 MST 2007


Author: qwell
Date: Thu May 17 11:53:27 2007
New Revision: 64761

URL: http://svn.digium.com/view/asterisk?view=rev&rev=64761
Log:
Merged revisions 64758 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r64758 | qwell | 2007-05-17 11:52:38 -0500 (Thu, 17 May 2007) | 4 lines

If we have a negative current message, we shouldn't go back even further...

Issue 9727.

........

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

Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.

Modified: branches/1.4/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_voicemail.c?view=diff&rev=64761&r1=64760&r2=64761
==============================================================================
--- branches/1.4/apps/app_voicemail.c (original)
+++ branches/1.4/apps/app_voicemail.c Thu May 17 11:53:27 2007
@@ -6563,7 +6563,7 @@
 			}
 			break;
 		case '4':
-			if (vms.curmsg) {
+			if (vms.curmsg > 0) {
 				vms.curmsg--;
 				cmd = play_message(chan, vmu, &vms);
 			} else {



More information about the svn-commits mailing list