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

Commit 0d817bc0 authored by Steve French's avatar Steve French
Browse files

[CIFS] Remove redundant NULL check



Noticed by Coverity checker.

Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent 78b58e54
Loading
Loading
Loading
Loading
+6 −12
Original line number Diff line number Diff line
@@ -2159,7 +2159,6 @@ CIFSSMBCopy(const int xid, struct cifsTconInfo *tcon, const char *fromName,
		cFYI(1, ("Send error in copy = %d with %d files copied",
			rc, le16_to_cpu(pSMBr->CopyCount)));
	}
	if (pSMB)
	cifs_buf_release(pSMB);

	if (rc == -EAGAIN)
@@ -2249,7 +2248,6 @@ CIFSUnixCreateSymLink(const int xid, struct cifsTconInfo *tcon,
	if (rc)
		cFYI(1, ("Send error in SetPathInfo create symlink = %d", rc));

	if (pSMB)
	cifs_buf_release(pSMB);

	if (rc == -EAGAIN)
@@ -4095,7 +4093,6 @@ CIFSGetDFSRefer(const int xid, struct cifsSesInfo *ses,
				 target_nodes, nls_codepage);

GetDFSRefExit:
	if (pSMB)
	cifs_buf_release(pSMB);

	if (rc == -EAGAIN)
@@ -5117,7 +5114,6 @@ CIFSSMBUnixSetPerms(const int xid, struct cifsTconInfo *tcon,
	if (rc)
		cFYI(1, ("SetPathInfo (perms) returned %d", rc));

	if (pSMB)
	cifs_buf_release(pSMB);
	if (rc == -EAGAIN)
		goto setPermsRetry;
@@ -5340,7 +5336,6 @@ CIFSSMBQAllEAs(const int xid, struct cifsTconInfo *tcon,
			}
		}
	}
	if (pSMB)
	cifs_buf_release(pSMB);
	if (rc == -EAGAIN)
		goto QAllEAsRetry;
@@ -5490,7 +5485,6 @@ ssize_t CIFSSMBQueryEA(const int xid, struct cifsTconInfo *tcon,
			}
		}
	}
	if (pSMB)
	cifs_buf_release(pSMB);
	if (rc == -EAGAIN)
		goto QEARetry;