diff options
author | Gerald Carter <jerry@samba.org> | 2003-12-10 21:14:39 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-12-10 21:14:39 +0000 |
commit | 1959428a00d5b6b41e2fc741841ba16e98926b96 (patch) | |
tree | b818bd49501a1a623e76f975d32ed0da32a6c4de /source3/rpc_parse/parse_misc.c | |
parent | b90d6b16e4175526c5112b9541d7d509d5a64edf (diff) | |
download | samba-1959428a00d5b6b41e2fc741841ba16e98926b96.tar.gz samba-1959428a00d5b6b41e2fc741841ba16e98926b96.tar.bz2 samba-1959428a00d5b6b41e2fc741841ba16e98926b96.zip |
Fix UNISTR2 length bug in LsaQueryInfo(3) that cause SID resolution to fail on local files on on domain members; bug 875
(This used to be commit a5c5dde1c34ba44f8d9bbb38720a089a6d61806c)
Diffstat (limited to 'source3/rpc_parse/parse_misc.c')
-rw-r--r-- | source3/rpc_parse/parse_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_misc.c b/source3/rpc_parse/parse_misc.c index 7cd3c795e6..b34efa6667 100644 --- a/source3/rpc_parse/parse_misc.c +++ b/source3/rpc_parse/parse_misc.c @@ -942,7 +942,7 @@ void init_unistr2(UNISTR2 *str, const char *buf, enum unistr2_term_codes flags) str->uni_max_len = num_chars; str->offset = 0; str->uni_str_len = num_chars; - if (num_chars && (flags == UNI_MAXLEN_TERMINATE)) + if ( num_chars && ((flags == UNI_MAXLEN_TERMINATE) || (flags == UNI_BROKEN_NON_NULL)) ) str->uni_max_len++; } |