[svn-commits] dvossel: branch 1.4 r231235 - /branches/1.4/apps/app_dial.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Nov 25 15:38:36 CST 2009


Author: dvossel
Date: Wed Nov 25 15:38:32 2009
New Revision: 231235

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=231235
Log:
fixes solaris segfault on dial with verbosity >= 3

(closes issue #16193)
Reported by: asgaroth
Patches:
      bug_16193_1.4.21.2_vers.diff uploaded by snuffy (license 35)
Tested by: asgaroth, snuffy


Modified:
    branches/1.4/apps/app_dial.c

Modified: branches/1.4/apps/app_dial.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/apps/app_dial.c?view=diff&rev=231235&r1=231234&r2=231235
==============================================================================
--- branches/1.4/apps/app_dial.c (original)
+++ branches/1.4/apps/app_dial.c Wed Nov 25 15:38:32 2009
@@ -1044,10 +1044,10 @@
 		warning_sound = S_OR(var, "timeleft");
 		
 		var = pbx_builtin_getvar_helper(chan,"LIMIT_TIMEOUT_FILE");
-		end_sound = S_OR(var, NULL);	/* XXX not much of a point in doing this! */
+		end_sound = S_OR(var, "");
 		
 		var = pbx_builtin_getvar_helper(chan,"LIMIT_CONNECT_FILE");
-		start_sound = S_OR(var, NULL);	/* XXX not much of a point in doing this! */
+		start_sound = S_OR(var, "");
 
 		/* undo effect of S(x) in case they are both used */
 		calldurationlimit = -1;




More information about the svn-commits mailing list