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

Commit 7d3fb24b authored by Steve French's avatar Steve French
Browse files

Removed duplicated (and unneeded) goto



Remove an unneeded goto (and also was duplicated goto target name).

Signed-off-by: default avatarSteve French <smfrench@gmail.com>
parent 9bf0c9cd
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -2161,11 +2161,9 @@ send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
	rc = SendReceive2(xid, ses, iov, num, &resp_buftype, 0);
	rsp = (struct smb2_set_info_rsp *)iov[0].iov_base;

	if (rc != 0) {
	if (rc != 0)
		cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
		goto out;
	}
out:

	free_rsp_buf(resp_buftype, rsp);
	kfree(iov);
	return rc;