diff options
author | Anubhav Rakshit <anubhav.rakshit@gmail.com> | 2015-06-26 12:24:23 +0530 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2015-07-19 20:13:10 +0200 |
commit | 7127c60daabfdb54434db0ef030f763ca650b2b4 (patch) | |
tree | 062d05c9e541ae4c0e7b6fafbf75146a821188f5 /source3/libsmb | |
parent | 5f029fc80873dba620226fc946dbe6f00a1c3cf1 (diff) | |
download | samba-7127c60daabfdb54434db0ef030f763ca650b2b4.tar.gz |
s3:libsmb: Fix a bug in conversion of ea list to ea array.
Bug 11361 - Reading of EA's (Extended Attributes) fails using SMB2 and above
protocols
Tested against Win2k12r2 server.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11361
Signed-off-by: Anubhav Rakshit <anubhav.rakshit@gmail.com>
Reviewed-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
(cherry picked from commit 5af2e3eed2ac309e2491fc54e03e7b04c8b118fb)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/cli_smb2_fnum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/cli_smb2_fnum.c b/source3/libsmb/cli_smb2_fnum.c index aeade88e24d..d71c6c561db 100644 --- a/source3/libsmb/cli_smb2_fnum.c +++ b/source3/libsmb/cli_smb2_fnum.c @@ -2027,7 +2027,7 @@ NTSTATUS cli_smb2_get_ea_list_path(struct cli_state *cli, } ea_count = 0; for (eal = ea_list; eal; eal = eal->next) { - (*pea_array)[ea_count++] = ea_list->ea; + (*pea_array)[ea_count++] = eal->ea; } *pnum_eas = ea_count; } |