Null Pointer Dereference at packet-sccp.c:1620 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_sccp_data_param (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-sccp.c)![]() | ||||||
![]() | ||||||
1605 | dissect_sccp_data_param(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) | |||||
1606 | { | |||||
1607 | guint8 ssn = INVALID_SSN; | |||||
1608 | guint8 other_ssn = INVALID_SSN; | |||||
1609 | const mtp3_addr_pc_t* dpc; | |||||
1610 | const mtp3_addr_pc_t* opc; | |||||
1611 | ||||||
1612 | if (trace_sccp && assoc && assoc != &no_assoc) { | |||||
1613 | pinfo->sccp_info = assoc->curr_msg; | |||||
1614 | } else { | |||||
1615 | pinfo->sccp_info = NULL; | |||||
1616 | } | |||||
1617 | ||||||
1618 | switch (pinfo->p2p_dir) { | |||||
1619 | case P2P_DIR_SENT: | |||||
1620 | ssn = assoc->calling_ssn;
| |||||
![]() |