[asterisk-commits] file: branch 1.6.1 r181614 - in /branches/1.6.1: ./ apps/app_dial.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Mar 12 08:28:42 CDT 2009
Author: file
Date: Thu Mar 12 08:28:39 2009
New Revision: 181614
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=181614
Log:
Merged revisions 181612 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r181612 | file | 2009-03-12 10:24:12 -0300 (Thu, 12 Mar 2009) | 5 lines
Fix crash when sleep and retries argument was not given to RetryDial application.
(closes issue #14647)
Reported by: sherpya
........
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/apps/app_dial.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/apps/app_dial.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/apps/app_dial.c?view=diff&rev=181614&r1=181613&r2=181614
==============================================================================
--- branches/1.6.1/apps/app_dial.c (original)
+++ branches/1.6.1/apps/app_dial.c Thu Mar 12 08:28:39 2009
@@ -2051,10 +2051,12 @@
parse = ast_strdupa(data);
AST_STANDARD_APP_ARGS(args, parse);
- if ((sleepms = atoi(args.sleep)))
+ if (!ast_strlen_zero(args.sleep) && (sleepms = atoi(args.sleep)))
sleepms *= 1000;
- loops = atoi(args.retries);
+ if (!ast_strlen_zero(args.retries)) {
+ loops = atoi(args.retries);
+ }
if (!args.dialdata) {
ast_log(LOG_ERROR, "%s requires a 4th argument (dialdata)\n", rapp);
More information about the asterisk-commits
mailing list