Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0a891adc authored by Dave Jones's avatar Dave Jones Committed by Steve French
Browse files

[CIFS] Fix reversed memset arguments



Signed-off-by: default avatarDave Jones <davej@redhat.com>
Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent e4058245
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ static void fill_fake_finddataunix(FILE_UNIX_BASIC_INFO *pfnd_dat,
{
	struct inode *pinode = NULL;

	memset(pfnd_dat, sizeof(FILE_UNIX_BASIC_INFO), 0);
	memset(pfnd_dat, 0, sizeof(FILE_UNIX_BASIC_INFO));

/*	__le64 pfnd_dat->EndOfFile = cpu_to_le64(0);
	__le64 pfnd_dat->NumOfBytes = cpu_to_le64(0);
@@ -384,7 +384,7 @@ static int get_sfu_mode(struct inode *inode,
static void fill_fake_finddata(FILE_ALL_INFO *pfnd_dat,
			       struct super_block *sb)
{
	memset(pfnd_dat, sizeof(FILE_ALL_INFO), 0);
	memset(pfnd_dat, 0, sizeof(FILE_ALL_INFO));

/*	__le64 pfnd_dat->AllocationSize = cpu_to_le64(0);
	__le64 pfnd_dat->EndOfFile = cpu_to_le64(0);