diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-05-22 22:46:29 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-05-22 22:46:29 +1000 |
commit | d5def936fe67c1cde2c4ed00834c4ce325dfcb55 (patch) | |
tree | 81aa9c5d08d6da0e877fea4bbd03cd341eba82c6 /source4/smb_server | |
parent | a6e5c70da75e62c84eff0911c279c6a9b0b00b45 (diff) | |
download | samba-d5def936fe67c1cde2c4ed00834c4ce325dfcb55.tar.gz samba-d5def936fe67c1cde2c4ed00834c4ce325dfcb55.tar.xz samba-d5def936fe67c1cde2c4ed00834c4ce325dfcb55.zip |
pass in the required alignment to the EA construction routines
(This used to be commit af31030e0b78b6b220740529901ec8d2d9f5a3fe)
Diffstat (limited to 'source4/smb_server')
-rw-r--r-- | source4/smb_server/blob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/smb_server/blob.c b/source4/smb_server/blob.c index 65cdd2aea6..cea4c60e59 100644 --- a/source4/smb_server/blob.c +++ b/source4/smb_server/blob.c @@ -476,12 +476,12 @@ NTSTATUS smbsrv_push_passthru_fileinfo(TALLOC_CTX *mem_ctx, } list_size = ea_list_size_chained(st->all_eas.out.num_eas, - st->all_eas.out.eas); + st->all_eas.out.eas, 8); BLOB_CHECK(smbsrv_blob_grow_data(mem_ctx, blob, list_size)); ea_put_list_chained(blob->data, st->all_eas.out.num_eas, - st->all_eas.out.eas); + st->all_eas.out.eas, 8); return NT_STATUS_OK; case RAW_FILEINFO_SMB2_ALL_INFORMATION: |