From 0eab7a4c302f11ce472da18b36daf14f3e467f7b Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 24 Sep 2013 10:18:36 -0700 Subject: [PATCH] dsdb: Convert the full string from UTF16 to UTF8, including embedded NULLs Bug: https://bugzilla.samba.org/show_bug.cgi?id=8077 Note that this doesn't fix the userParameters problem completely, but it doesn't truncate the userParameters value anymore. Signed-off-by: Andrew Bartlett Reviewed-by: Stefan Metzmacher Autobuild-User(master): Stefan Metzmacher Autobuild-Date(master): Thu Sep 26 22:05:12 CEST 2013 on sn-devel-104 (cherry picked from commit 89200c227f36a063612eb38927ac8dee18e044d5) --- source4/dsdb/schema/schema_syntax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/dsdb/schema/schema_syntax.c b/source4/dsdb/schema/schema_syntax.c index f7176cd1..c2e0208 100644 --- a/source4/dsdb/schema/schema_syntax.c +++ b/source4/dsdb/schema/schema_syntax.c @@ -1529,7 +1529,7 @@ static WERROR dsdb_syntax_UNICODE_drsuapi_to_ldb(const struct dsdb_syntax_ctx *c return WERR_FOOBAR; } - out->values[i] = data_blob_string_const(str); + out->values[i] = data_blob_const(str, converted_size); } return WERR_OK; -- 1.7.9.5