Text   |  XML   |  ReML   |   Visible Warnings:

Buffer Overrun  at value_string.c:61

No properties have been set. | edit properties
Jump to warning location ↓ warning details...
Show Events | Options

csm_to_host

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-csm-encaps.c)expand/collapse
Show more  
 190  csm_to_host(guint16 fc, guint16 ct)
 191  {
 192          if (fc == 0x0000)
 193          {
 194[+]                 return (match_strval(ct, exclusive_to_host_ct_vals) != NULL);
expand/collapse

match_strval

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/value_string.c)expand/collapse
Show more  
 75  const gchar*
 76  match_strval(guint32 val, const value_string *vs) {
 77      gint ignore_me;
 78[+]     return match_strval_idx(val, vs, &ignore_me);
expand/collapse

match_strval_idx

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/value_string.c)expand/collapse
Show more  
 56  const gchar*
 57  match_strval_idx(guint32 val, const value_string *vs, gint *idx) {
 58    gint i = 0;
 59   
 60    if(vs) {
 61      while (vs[i].strptr) {
 62        if (vs[i].value == val) {
 63          *idx = i;
 64          return(vs[i].strptr);
 65        }
 66        i++;
Show more  
Show more  
Show more  




Change Warning 1986.29689 : Buffer Overrun

Priority:
State:
Finding:
Owner:
Note: