Text   |  XML   |  ReML   |   Visible Warnings:

Unreachable Data Flow  at file.c:1957

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

cf_retap_packets

(/home/sate/Testcases/c/cve/wireshark-1.2.0/file.c)expand/collapse
Show more  
 1928  cf_retap_packets(capture_file *cf, gboolean do_columns)
 1929  {
 1930    packet_range_t range;
 1931   
 1932    /* Reset the tap listeners. */
 1933    reset_tap_listeners();
 1934   
 1935    /* Iterate through the list of packets, dissecting all packets and
 1936       re-running the taps. */
 1937    packet_range_init(&range);
 1938    packet_range_process_init(&range);
 1939    switch (process_specified_packets(cf, &range, "Refiltering statistics on",
 1940                                      "all packets", TRUE, retap_packet,
 1941                                      do_columns ? &cf->cinfo : NULL)) {
 1942    case PSP_FINISHED:
 1943      /* Completed successfully. */
 1944      return CF_READ_OK;
 1945   
 1946    case PSP_STOPPED:
 1947      /* Well, the user decided to abort the refiltering.
 1948         Return CF_READ_ABORTED so our caller knows they did that. */
 1949      return CF_READ_ABORTED;
 1950   
 1951    case PSP_FAILED:
 1952      /* Error while retapping. */
 1953      return CF_READ_ERROR;
 1954    }
 1955   
 1956    g_assert_not_reached();
 1957    return CF_READ_OK;
 1958  }
Show more  




Change Warning 4035.30502 : Unreachable Data Flow

Priority:
State:
Finding:
Owner:
Note: