summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2015-06-12 16:01:54 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2015-06-12 16:01:54 -0500
commit0b233ea61d6ee7b5ef4aa74ad7cd847107c0cccb (patch)
treec10f33d39fca97ba2932831cbbea4d180dc38fbb
parent30a0f2d9acd0f7c14013d830a0b4bf673d0af2d0 (diff)
parenta2f4d03c87bb67892a8b846c59bd26e9163054e9 (diff)
Merge "app_directory: Fix crash when using the alias option 'a'." into 13
-rw-r--r--apps/app_directory.c48
1 files changed, 28 insertions, 20 deletions
diff --git a/apps/app_directory.c b/apps/app_directory.c
index 267e2e8c3..ef3c363f9 100644
--- a/apps/app_directory.c
+++ b/apps/app_directory.c
@@ -518,7 +518,9 @@ static struct ast_config *realtime_directory(char *context)
/* Skip hidden */
continue;
}
- ast_str_set(&tmp, 0, "no-password,%s", S_OR(fullname, ""));
+
+ /* password,Full Name,email,pager,options */
+ ast_str_set(&tmp, 0, "no-password,%s,,,", S_OR(fullname, ""));
if (ast_variable_retrieve(rtdata, mailbox, "alias")) {
for (alias = ast_variable_browse(rtdata, mailbox); alias; alias = alias->next) {
if (!strcasecmp(alias->name, "alias")) {
@@ -602,7 +604,10 @@ static int search_directory_sub(const char *context, struct ast_config *vmcfg, s
{
struct ast_variable *v;
struct ast_str *buf = ast_str_thread_get(&commonbuf, 100);
- char *pos, *bufptr, *cat, *alias;
+ char *name;
+ char *options;
+ char *alias;
+ char *cat;
struct directory_item *item;
int res;
@@ -613,33 +618,36 @@ static int search_directory_sub(const char *context, struct ast_config *vmcfg, s
ast_debug(2, "Pattern: %s\n", ext);
for (v = ast_variable_browse(vmcfg, context); v; v = v->next) {
-
- /* Ignore hidden */
- if (strcasestr(v->value, "hidefromdir=yes")) {
- continue;
- }
-
ast_str_set(&buf, 0, "%s", v->value);
- bufptr = ast_str_buffer(buf);
+ options = ast_str_buffer(buf);
/* password,Full Name,email,pager,options */
- strsep(&bufptr, ",");
- pos = strsep(&bufptr, ",");
-
- /* No name to compare against */
- if (ast_strlen_zero(pos)) {
+ strsep(&options, ","); /* Skip password */
+ name = strsep(&options, ","); /* Save full name */
+ strsep(&options, ","); /* Skip email */
+ strsep(&options, ","); /* Skip pager */
+ /* options is now the options field if it exists. */
+
+ if (options && strcasestr(options, "hidefromdir=yes")) {
+ /* Ignore hidden */
+ continue;
+ }
+ if (ast_strlen_zero(name)) {
+ /* No name to compare against */
continue;
}
res = 0;
if (ast_test_flag(&flags, OPT_LISTBYLASTNAME)) {
- res = check_match(&item, context, pos, v->name, ext, 0 /* use_first_name */);
+ res = check_match(&item, context, name, v->name, ext, 0 /* use_first_name */);
}
if (!res && ast_test_flag(&flags, OPT_LISTBYFIRSTNAME)) {
- res = check_match(&item, context, pos, v->name, ext, 1 /* use_first_name */);
+ res = check_match(&item, context, name, v->name, ext, 1 /* use_first_name */);
}
- if (!res && ast_test_flag(&flags, OPT_ALIAS) && (alias = strcasestr(bufptr, "alias="))) {
+ if (!res && ast_test_flag(&flags, OPT_ALIAS)
+ && options && (alias = strcasestr(options, "alias="))) {
char *a;
+
ast_debug(1, "Found alias: %s\n", alias);
while ((a = strsep(&alias, "|"))) {
if (!strncasecmp(a, "alias=", 6)) {
@@ -683,9 +691,9 @@ static int search_directory_sub(const char *context, struct ast_config *vmcfg, s
res = check_match(&item, context, position, cat, ext, 1 /* use_first_name */);
}
if (!res && ast_test_flag(&flags, OPT_ALIAS)) {
- struct ast_variable *alias;
- for (alias = ast_variable_browse(ucfg, cat); alias; alias = alias->next) {
- if (!strcasecmp(v->name, "alias") && (res = check_match(&item, context, v->value, cat, ext, 1))) {
+ for (v = ast_variable_browse(ucfg, cat); v; v = v->next) {
+ if (!strcasecmp(v->name, "alias")
+ && (res = check_match(&item, context, v->value, cat, ext, 1))) {
break;
}
}