Add protection code to free memory in case of processing an address which
is neither IPv4 or IPv6. Reported by: Coverity CID: 749311 MFC after: 1 week
This commit is contained in:
parent
8b663cb83f
commit
632195efc5
@ -3346,6 +3346,11 @@ sctp_asconf_send_nat_state_update(struct sctp_tcb *stcb,
|
||||
TAILQ_INSERT_TAIL(&stcb->asoc.asconf_queue, aa, next);
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
SCTPDBG(SCTP_DEBUG_ASCONF1,
|
||||
"sctp_asconf_send_nat_state_update: unknown address family\n");
|
||||
SCTP_FREE(aa, SCTP_M_ASC_ADDR);
|
||||
return;
|
||||
}
|
||||
SCTP_MALLOC(aa, struct sctp_asconf_addr *, sizeof(*aa),
|
||||
SCTP_M_ASC_ADDR);
|
||||
@ -3379,6 +3384,11 @@ sctp_asconf_send_nat_state_update(struct sctp_tcb *stcb,
|
||||
TAILQ_INSERT_TAIL(&stcb->asoc.asconf_queue, aa, next);
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
SCTPDBG(SCTP_DEBUG_ASCONF1,
|
||||
"sctp_asconf_send_nat_state_update: unknown address family\n");
|
||||
SCTP_FREE(aa, SCTP_M_ASC_ADDR);
|
||||
return;
|
||||
}
|
||||
/* Now we must hunt the addresses and add all global addresses */
|
||||
if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) {
|
||||
|
Loading…
Reference in New Issue
Block a user