[svn-commits] tilghman: trunk r132203 - /trunk/main/manager.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jul 18 15:41:03 CDT 2008


Author: tilghman
Date: Fri Jul 18 15:41:02 2008
New Revision: 132203

URL: http://svn.digium.com/view/asterisk?view=rev&rev=132203
Log:
Fix trunk devmode

Modified:
    trunk/main/manager.c

Modified: trunk/main/manager.c
URL: http://svn.digium.com/view/asterisk/trunk/main/manager.c?view=diff&rev=132203&r1=132202&r2=132203
==============================================================================
--- trunk/main/manager.c (original)
+++ trunk/main/manager.c Fri Jul 18 15:41:02 2008
@@ -1270,7 +1270,7 @@
 {
 	int x;
 	char hdr[40];
-	const char *action, *cat, *match, *line;
+	const char *action, *cat, *match, *line, *tmp;
 	char *var, *value;
 	struct ast_category *category;
 	struct ast_variable *v;
@@ -1285,11 +1285,19 @@
 		snprintf(hdr, sizeof(hdr), "Cat-%06d", x);
 		cat = astman_get_header(m, hdr);
 		snprintf(hdr, sizeof(hdr), "Var-%06d", x);
-		var = astman_get_header(m, hdr);
-		ast_uri_decode(var);
+		if ((tmp = astman_get_header(m, hdr))) {
+			var = ast_strdupa(tmp);
+			ast_uri_decode(var);
+		} else {
+			var = "";
+		}
 		snprintf(hdr, sizeof(hdr), "Value-%06d", x);
-		value = astman_get_header(m, hdr);
-		ast_uri_decode(value);
+		if ((tmp = astman_get_header(m, hdr))) {
+			value = ast_strdupa(tmp);
+			ast_uri_decode(value);
+		} else {
+			value = "";
+		}
 		if (!ast_strlen_zero(value) && *value == '>') {
 			object = 1;
 			value++;




More information about the svn-commits mailing list