diff options
author | Jeremy Allison <jra@samba.org> | 2000-08-11 23:13:09 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-08-11 23:13:09 +0000 |
commit | ceba9f3dcdb4bddae17ec0024692c9074086302d (patch) | |
tree | e5c7162c20486ae9a3cd69714c5825d4fecd8751 /source/rpc_parse/parse_misc.c | |
parent | 40ae638866e3d826ccd5d827672634959c31b039 (diff) | |
download | samba-ceba9f3dcdb4bddae17ec0024692c9074086302d.tar.gz samba-ceba9f3dcdb4bddae17ec0024692c9074086302d.tar.xz samba-ceba9f3dcdb4bddae17ec0024692c9074086302d.zip |
Fixed the problem with UNISTR marshalling in a buffer5 struct.
The smb_io_unistr() code called a prs_align, this was not being
counted in the size or taken account of in the offset calculation.
Fixed size_ calculation to always return a size a multiple of 4
and also set the offset correctly. This fixes the problem I saw
and will hopefully fix the problem HP reported. JF please check
this change.
Jeremy.
Diffstat (limited to 'source/rpc_parse/parse_misc.c')
-rw-r--r-- | source/rpc_parse/parse_misc.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/source/rpc_parse/parse_misc.c b/source/rpc_parse/parse_misc.c index 02ab707a40b..e7b8c23619b 100644 --- a/source/rpc_parse/parse_misc.c +++ b/source/rpc_parse/parse_misc.c @@ -475,8 +475,7 @@ void init_unistr(UNISTR *str, const char *buf) { size_t len; - if (buf == NULL) - { + if (buf == NULL) { str->buffer = NULL; return; } @@ -484,21 +483,19 @@ void init_unistr(UNISTR *str, const char *buf) len = strlen(buf) + 1; - if (!parse_misc_talloc) + if (!parse_misc_talloc) parse_misc_talloc = talloc_init(); if (len < MAX_UNISTRLEN) len = MAX_UNISTRLEN; len *= sizeof(uint16); - str->buffer = (uint16 *)talloc(parse_misc_talloc, len); + str->buffer = (uint16 *)talloc(parse_misc_talloc, len); if (str->buffer == NULL) - smb_panic("init_unistr2: malloc fail\n"); + smb_panic("init_unistr: malloc fail\n"); /* store the string (null-terminated copy) */ dos_struni2((char *)str->buffer, buf, len); - - return; } /******************************************************************* |