diff options
author | Simo Sorce <idra@samba.org> | 2006-05-20 19:37:21 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:15 -0500 |
commit | 6d0969aa1adff4c7f134bd6e3e42997e72b41cf6 (patch) | |
tree | 67b86f66eb8f698988c3484c55774e3b1397ced5 /source4/lib/ldb/common/ldb_msg.c | |
parent | e23cc70a72e6582e91bcfdaf1d6ed2191e7e23a6 (diff) | |
download | samba-6d0969aa1adff4c7f134bd6e3e42997e72b41cf6.tar.gz samba-6d0969aa1adff4c7f134bd6e3e42997e72b41cf6.tar.bz2 samba-6d0969aa1adff4c7f134bd6e3e42997e72b41cf6.zip |
r15761: Fix-as-you-go ...
Testing various async paths and uncovering bugs
(This used to be commit 099d873ea596ece18efe63b06bc64e7f97a96f82)
Diffstat (limited to 'source4/lib/ldb/common/ldb_msg.c')
-rw-r--r-- | source4/lib/ldb/common/ldb_msg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/common/ldb_msg.c b/source4/lib/ldb/common/ldb_msg.c index b09f2ce6ed..bae17e7046 100644 --- a/source4/lib/ldb/common/ldb_msg.c +++ b/source4/lib/ldb/common/ldb_msg.c @@ -734,7 +734,7 @@ int ldb_msg_check_string_attribute(const struct ldb_message *msg, const char *na return 0; val.data = discard_const(value); - val.length = strlen(value) + 1; + val.length = strlen(value); if (ldb_msg_find_val(el, &val)) return 1; |