summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source4/lib/ldb/common/ldb_parse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/ldb/common/ldb_parse.c b/source4/lib/ldb/common/ldb_parse.c
index 80841054c6..40e83f01bd 100644
--- a/source4/lib/ldb/common/ldb_parse.c
+++ b/source4/lib/ldb/common/ldb_parse.c
@@ -136,7 +136,7 @@ struct ldb_val ldb_binary_decode(TALLOC_CTX *ctx, const char *str)
struct ldb_val ret;
int slen = strlen(str);
- ret.data = talloc_size(ctx, slen);
+ ret.data = talloc_size(ctx, slen+1);
ret.length = 0;
if (ret.data == NULL) return ret;
@@ -155,6 +155,7 @@ struct ldb_val ldb_binary_decode(TALLOC_CTX *ctx, const char *str)
}
}
ret.length = j;
+ ((uint8_t *)ret.data)[j] = 0;
return ret;
}