Unused Value at tvbuff.c:2721 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
tvb_skip_wsp_return (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/tvbuff.c)![]() | ||||||
![]() | ||||||
2720 | gint tvb_skip_wsp_return(tvbuff_t* tvb, gint offset){ | |||||
2721 | gint counter = offset;
| |||||
2722 | gint end; | |||||
2723 | guint8 tempchar; | |||||
2724 | end = 0; | |||||
2725 | ||||||
2726 | for(counter = offset; counter > end && | |||||
2727 | ((tempchar = tvb_get_guint8(tvb,counter)) == ' ' || | |||||
2728 | tempchar == '\t' || tempchar == '\n' || tempchar == '\r'); counter--); | |||||
2729 | counter++; | |||||
2730 | return (counter); | |||||
2731 | } | |||||
![]() |