mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2026-01-27 12:47:24 +01:00
net/sctp: fix a null dereference in sctp_disposition sctp_sf_do_5_1D_ce()
If new_asoc->peer.adaptation_ind=0 and sctp_ulpevent_make_authkey=0
and sctp_ulpevent_make_authkey() returns 0, then the variable
ai_ev remains zero and the zero will be dereferenced
in the sctp_ulpevent_free() function.
Signed-off-by: Alexandr Sapozhnikov <alsp705@gmail.com>
Acked-by: Xin Long <lucien.xin@gmail.com>
Fixes: 30f6ebf65b ("sctp: add SCTP_AUTH_NO_AUTH type for AUTHENTICATION_EVENT")
Link: https://patch.msgid.link/20251002091448.11-1-alsp705@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
1b54b0756f
commit
2f3119686e
|
|
@ -886,6 +886,7 @@ enum sctp_disposition sctp_sf_do_5_1D_ce(struct net *net,
|
|||
return SCTP_DISPOSITION_CONSUME;
|
||||
|
||||
nomem_authev:
|
||||
if (ai_ev)
|
||||
sctp_ulpevent_free(ai_ev);
|
||||
nomem_aiev:
|
||||
sctp_ulpevent_free(ev);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user