[svn-commits] jrose: branch 11 r418649 - in /branches/11: ./ funcs/func_uri.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Jul 15 12:32:19 CDT 2014


Author: jrose
Date: Tue Jul 15 12:32:15 2014
New Revision: 418649

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=418649
Log:
func_uri: URIENCODE/URIDECODE - allow empty strings as argument

Previously these two dialplan functions would issue warnings and
return failure when an empty string is used as the argument. Now
they will not issue a warning and will successfully return an
empty string.

ASTERISK-23911 #close
Reported by: Matt Jordan
Review: https://reviewboard.asterisk.org/r/3745/
........

Merged revisions 418641 from http://svn.asterisk.org/svn/asterisk/branches/1.8

Modified:
    branches/11/   (props changed)
    branches/11/funcs/func_uri.c

Propchange: branches/11/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.

Modified: branches/11/funcs/func_uri.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/funcs/func_uri.c?view=diff&rev=418649&r1=418648&r2=418649
==============================================================================
--- branches/11/funcs/func_uri.c (original)
+++ branches/11/funcs/func_uri.c Tue Jul 15 12:32:15 2014
@@ -76,8 +76,8 @@
 		     char *buf, size_t len)
 {
 	if (ast_strlen_zero(data)) {
-		ast_log(LOG_WARNING, "Syntax: URIENCODE(<data>) - missing argument!\n");
-		return -1;
+		buf[0] = '\0';
+		return 0;
 	}
 
 	ast_uri_encode(data, buf, len, ast_uri_http);
@@ -90,8 +90,8 @@
 		     char *buf, size_t len)
 {
 	if (ast_strlen_zero(data)) {
-		ast_log(LOG_WARNING, "Syntax: URIDECODE(<data>) - missing argument!\n");
-		return -1;
+		buf[0] = '\0';
+		return 0;
 	}
 
 	ast_copy_string(buf, data, len);




More information about the svn-commits mailing list