Text   |  XML   |  ReML   |   Visible Warnings:

Unreachable Control Flow  at column-utils.c:998

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

col_set_cls_time

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/column-utils.c)expand/collapse
Show more  
 968  col_set_cls_time(frame_data *fd, column_info *cinfo, gint col)
 969  {
 970    switch (timestamp_get_type()) {
 971      case TS_ABSOLUTE:
 972        col_set_abs_time(fd, cinfo, col);
 973        break;
 974   
 975      case TS_ABSOLUTE_WITH_DATE:
 976        col_set_abs_date_time(fd, cinfo, col);
 977        break;
 978   
 979      case TS_RELATIVE:
 980        col_set_rel_time(fd, cinfo, col);
 981        break;
 982   
 983      case TS_DELTA:
 984        col_set_delta_time(fd, cinfo, col);
 985        break;
 986   
 987      case TS_DELTA_DIS:
 988        col_set_delta_time_dis(fd, cinfo, col);
 989        break;
 990   
 991      case TS_EPOCH:
 992        col_set_epoch_time(fd, cinfo, col);
 993        break;
 994   
 995      case TS_NOT_SET:
 996        /* code is missing for this case, but I don't know which [jmayer20051219] */
 997        g_assert(FALSE);
 998        break;
 999    }
 1000  }
Show more  




Change Warning 3483.30217 : Unreachable Control Flow

Priority:
State:
Finding:
Owner:
Note: