Text   |  XML   |  ReML   |   Visible Warnings:

Null Pointer Dereference  at version_info.c:114

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

end_string

(/home/sate/Testcases/c/cve/wireshark-1.2.0/version_info.c)expand/collapse
Show more  
 105  end_string(GString *str)
 106  {
 107          size_t point;
 108          char *p, *q;
 109   
 110          point = strlen(str->str);
 111          if (point == 0 || str->str[point - 1] != '\n')
 112                  g_string_append(str, "\n");
 113          p = str->str;
 114          while (*p != '\0') {
 115                  q = strchr(p, '\n');
 116                  if (q - p > 80) {
 117                          /*
 118                           * Break at or before this point.
 119                           */
 120                          q = p + 80;
 121                          while (q > p && *q != ' ')
 122                                  q--;
 123                          if (q != p)
 124                                  *q = '\n';
 125                  }
 126                  p = q + 1;
Show more  




Change Warning 4150.29653 : Null Pointer Dereference

Priority:
State:
Finding:
Owner:
Note: