Text   |  XML   |  ReML   |   Visible Warnings:

Ignored Return Value  at print.c:1400

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

write_fields_preamble

(/home/sate/Testcases/c/cve/wireshark-1.2.0/print.c)expand/collapse
Show more  
 1382  void write_fields_preamble(output_fields_t* fields, FILE *fh)
 1383  {
 1384      gsize i;
 1385   
 1386      g_assert(fields);
 1387      g_assert(fh);
 1388   
 1389      if(!fields->print_header) {
 1390          return;
 1391      }
 1392   
 1393      for(i = 0; i < fields->fields->len; ++i) {
 1394          const gchar* field = g_ptr_array_index(fields->fields,i);
 1395          if(i != 0 ) {
 1396              fputc(fields->separator, fh);
 1397          }
 1398          fputs(field, fh);
 1399      }
 1400      fputc('\n', fh);
 1401  }
Show more  




Change Warning 5535.35815 : Ignored Return Value

Because they are very similar, this warning shares annotations with warning 5535.35816.

Priority:
State:
Finding:
Owner:
Note: