Empty if Statement at packet-sflow.c:676 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_sflow_sample_rawheaderdata (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-sflow.c)![]() | ||||||
![]() | ||||||
666 | call_dissector(ipv6_handle, next_tvb, pinfo, sflow_header_tree); | |||||
667 | break; | |||||
668 | case SFLOW_HEADER_MPLS: | |||||
669 | call_dissector(mpls_handle, next_tvb, pinfo, sflow_header_tree); | |||||
670 | break; | |||||
671 | default: | |||||
672 | /* some of the protocols, I have no clue where to begin. */ | |||||
673 | break; | |||||
674 | }; | |||||
675 | } | |||||
676 | CATCH2(BoundsError, ReportedBoundsError) {
| |||||
677 | ; /* do nothing */ | |||||
678 | } | |||||
679 | ENDTRY; | |||||
680 | ||||||
681 | /* restore saved state */ | |||||
682 | col_set_writable(pinfo->cinfo, save_writable); | |||||
683 | pinfo->in_error_pkt = save_in_error_pkt; | |||||
684 | ||||||
685 | pinfo->dl_src = save_dl_src; | |||||
686 | pinfo->dl_dst = save_dl_dst; | |||||
![]() |