mirror of https://gitee.com/openkylin/qemu.git
slirp: don't crash when tcp_sockclosed() is called with a NULL tp
Signed-off-by: Steven Luo <steven+qemu@steven676.net> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
This commit is contained in:
parent
7acbff99c6
commit
b5ab677189
|
@ -356,6 +356,10 @@ tcp_sockclosed(struct tcpcb *tp)
|
|||
DEBUG_CALL("tcp_sockclosed");
|
||||
DEBUG_ARG("tp = %p", tp);
|
||||
|
||||
if (!tp) {
|
||||
return;
|
||||
}
|
||||
|
||||
switch (tp->t_state) {
|
||||
|
||||
case TCPS_CLOSED:
|
||||
|
@ -374,8 +378,7 @@ tcp_sockclosed(struct tcpcb *tp)
|
|||
tp->t_state = TCPS_LAST_ACK;
|
||||
break;
|
||||
}
|
||||
if (tp)
|
||||
tcp_output(tp);
|
||||
tcp_output(tp);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue