mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 17:53:56 +08:00
libceph: fix NULL dereference in reset_connection()
We dereference "con->in_msg" on the line after it was set to NULL. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Alex Elder <elder@inktank.com>
This commit is contained in:
parent
9a64e8e0ac
commit
26ce171915
@ -440,7 +440,7 @@ static void reset_connection(struct ceph_connection *con)
|
|||||||
con->in_msg->con = NULL;
|
con->in_msg->con = NULL;
|
||||||
ceph_msg_put(con->in_msg);
|
ceph_msg_put(con->in_msg);
|
||||||
con->in_msg = NULL;
|
con->in_msg = NULL;
|
||||||
ceph_con_put(con->in_msg->con);
|
ceph_con_put(con);
|
||||||
}
|
}
|
||||||
|
|
||||||
con->connect_seq = 0;
|
con->connect_seq = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user