summaryrefslogtreecommitdiff
path: root/res/res_config_ldap.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-03-06 05:21:39 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-03-06 05:21:39 +0000
commit8afeb7df4bade055ff4ac3f32c8bed608b79c5a1 (patch)
treef8e20a806adb7ca7aaa15f6b340850533009ce52 /res/res_config_ldap.c
parentcba8ba0eb4e331bc7705643544fba1e6f7f2ac0e (diff)
Missing braces, fix parsing
(closes issue #12112) Reported by: cyrenity Patches: res_config_ldap.patch-03-03-2008 uploaded by cyrenity (license 416) Tested by: cyrenity, Corydon76 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@106346 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_config_ldap.c')
-rw-r--r--res/res_config_ldap.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/res/res_config_ldap.c b/res/res_config_ldap.c
index ab71d8b7e..56f95ac01 100644
--- a/res/res_config_ldap.c
+++ b/res/res_config_ldap.c
@@ -687,7 +687,9 @@ static void append_var_and_value_to_filter(struct ast_str **filter,
ast_debug(2, "name='%s' value='%s'\n", name, value);
if (like_pos) {
- name = new_name = ast_strdupa(like_pos + strlen(" LIKE"));
+ int len = like_pos - name;
+ name = new_name = ast_strdupa(name);
+ new_name[len] = '\0';
value = new_value = ast_strdupa(value);
replace_string_in_string(new_value, "\\_", "_");
replace_string_in_string(new_value, "%", "*");
@@ -725,9 +727,10 @@ static struct ast_variable **realtime_ldap_base_ap(unsigned int *entries_count_p
return NULL;
}
- if (!(filter = ast_str_create(80)))
+ if (!(filter = ast_str_create(80))) {
ast_free(clean_basedn);
return NULL;
+ }
/* Get the first parameter and first value in our list of passed paramater/value pairs */
newparam = va_arg(ap, const char *);