Fix trunk devmode
authorTilghman Lesher <tilghman@meg.abyt.es>
Fri, 18 Jul 2008 20:41:02 +0000 (20:41 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Fri, 18 Jul 2008 20:41:02 +0000 (20:41 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@132203 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/manager.c

index a6f1b2b..5d8e25b 100644 (file)
@@ -1270,7 +1270,7 @@ static enum error_type handle_updates(struct mansession *s, const struct message
 {
        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 @@ static enum error_type handle_updates(struct mansession *s, const struct message
                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++;