Empty if Statement at packet-pdcp-lte.c:1002 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_pdcp_r_1_packet (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-pdcp-lte.c)![]() | ||||||
![]() | ||||||
992 | offset++; | |||||
993 | ||||||
994 | /* Large CID */ | |||||
995 | if (p_pdcp_info->large_cid_present) { | |||||
996 | offset = dissect_large_cid(tree, tvb, offset); | |||||
997 | } | |||||
998 | ||||||
999 | if (p_pdcp_info->profile == 1) { | |||||
1000 | /* TODO: */ | |||||
1001 | } | |||||
1002 | else if (p_pdcp_info->profile == 2) {
| |||||
1003 | /* TODO: */ | |||||
1004 | } | |||||
1005 | ||||||
1006 | return offset; | |||||
1007 | } | |||||
1008 | ||||||
1009 | ||||||
1010 | /* Dissect R-1-TS or R-1-ID packet. | |||||
1011 | Return following offset */ | |||||
1012 | static int dissect_pdcp_r_1_ts_or_id_packet(proto_tree *tree, | |||||
![]() |