Empty if Statement at packet-dcerpc.c:1811 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
add_pointer_to_list (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc.c)![]() | ||||||
![]() | ||||||
1801 | if(di->ptype == PDU_REQ){ | |||||
1802 | if(!(pinfo->fd->flags.visited)){ | |||||
1803 | if(id>value->max_ptr){ | |||||
1804 | value->max_ptr=id; | |||||
1805 | } | |||||
1806 | } | |||||
1807 | } else { | |||||
1808 | /* if we havent seen the request bail out since we cant | |||||
1809 | know whether this is the first non-NULL instance | |||||
1810 | or not */ | |||||
1811 | if(value->req_frame==0){
| |||||
1812 | /* XXX THROW EXCEPTION */ | |||||
1813 | } | |||||
1814 | ||||||
1815 | /* We saw this one in the request frame, nothing to | |||||
1816 | dissect later */ | |||||
1817 | if(id<=value->max_ptr){ | |||||
1818 | return; | |||||
1819 | } | |||||
1820 | } | |||||
1821 | } | |||||
![]() |