Text   |  XML   |  ReML   |   Visible Warnings:

Uninitialized Variable  at capture_sync.c:1261

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

sync_pipe_wait_for_child

(/home/sate/Testcases/c/cve/wireshark-1.2.0/capture_sync.c)expand/collapse
Show more  
 1246  sync_pipe_wait_for_child(capture_options *capture_opts)
 1247  {
 1248    int  wstatus;
 1249   
 1250   
 1251    g_log(LOG_DOMAIN_CAPTURE, G_LOG_LEVEL_DEBUG, "sync_pipe_wait_for_child: wait till child closed");
 1252    g_assert(capture_opts->fork_child != -1);
 1253   
 1254  #ifdef _WIN32 
 1255    if (_cwait(&wstatus, capture_opts->fork_child, _WAIT_CHILD) == -1) {
 1256      report_failure("Child capture process stopped unexpectedly (errno:%u)",
 1257                     errno);
 1258    }
 1259  #else
 1260    if (wait(&wstatus) != -1) {
 1261      if (WIFEXITED(wstatus)) {
Show more  




Change Warning 4892.29701 : Uninitialized Variable

Priority:
State:
Finding:
Owner:
Note: