diff options
author | Luke Leighton <lkcl@samba.org> | 1999-02-18 18:50:44 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-02-18 18:50:44 +0000 |
commit | b52903aefe3ab0412402ee7cff319ab4737a1658 (patch) | |
tree | 272785a4e80fcd4ce3b7d215b7bc78ee7d26a674 | |
parent | 894a8240414d751ca802b80ac08c4fd97dca50c2 (diff) | |
download | samba-b52903aefe3ab0412402ee7cff319ab4737a1658.tar.gz samba-b52903aefe3ab0412402ee7cff319ab4737a1658.tar.bz2 samba-b52903aefe3ab0412402ee7cff319ab4737a1658.zip |
problem been there for months: reg_r_info not aligning after string buffer.
(This used to be commit 66e2787ab7db72fb654b995280b294738e77e50a)
-rw-r--r-- | source3/rpc_parse/parse_reg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/rpc_parse/parse_reg.c b/source3/rpc_parse/parse_reg.c index ecec498528..4f9a9350bd 100644 --- a/source3/rpc_parse/parse_reg.c +++ b/source3/rpc_parse/parse_reg.c @@ -808,6 +808,7 @@ void reg_io_r_info(char *desc, REG_R_INFO *r_r, prs_struct *ps, int depth) prs_uint32("ptr_type", ps, depth, &(r_r->ptr_type)); smb_io_buffer2("uni_type", &(r_r->uni_type), r_r->ptr_type, ps, depth); + prs_align(ps); prs_uint32("ptr2", ps, depth, &(r_r->ptr2)); |