[CIFS] Fix memory leak in statfs to very old servers
We were allocating request buffers twice in the statfs path when mounted to very old (Windows 9x) servers. Signed-off-by: Steve French <sfrench@us.ibm.com>
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
Version 1.51
|
||||||
|
------------
|
||||||
|
Fix memory leak in statfs when mounted to very old servers (e.g.
|
||||||
|
Windows 9x)
|
||||||
|
|
||||||
Version 1.50
|
Version 1.50
|
||||||
------------
|
------------
|
||||||
Fix NTLMv2 signing. NFS server mounted over cifs works (if cifs mount is
|
Fix NTLMv2 signing. NFS server mounted over cifs works (if cifs mount is
|
||||||
|
@@ -4045,10 +4045,6 @@ oldQFSInfoRetry:
|
|||||||
(void **) &pSMBr);
|
(void **) &pSMBr);
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
|
|
||||||
(void **) &pSMBr);
|
|
||||||
if (rc)
|
|
||||||
return rc;
|
|
||||||
|
|
||||||
params = 2; /* level */
|
params = 2; /* level */
|
||||||
pSMB->TotalDataCount = 0;
|
pSMB->TotalDataCount = 0;
|
||||||
|
Reference in New Issue
Block a user