Text   |  XML   |  ReML   |   Visible Warnings:

Unused Value  at filter_dlg.c:170

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

display_filter_construct_cb

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/filter_dlg.c)expand/collapse
Show more  
 150  display_filter_construct_cb(GtkWidget *w, gpointer construct_args_ptr)
 151  {
 152      construct_args_t *construct_args = construct_args_ptr;
 153      GtkWidget *filter_browse_w;
 154      GtkWidget *parent_filter_te;
 155   
 156      /* Has a filter dialog box already been opened for the button? */
 157      filter_browse_w = g_object_get_data(G_OBJECT(w), E_FILT_DIALOG_PTR_KEY);
 158   
 159      if (filter_browse_w != NULL) {
 160          /* Yes.  Just re-activate that dialog box. */
 161          reactivate_window(filter_browse_w);
 162          return;
 163      }
 164   
 165      /* No.  Get the text entry attached to the button. */
 166      parent_filter_te = g_object_get_data(G_OBJECT(w), E_FILT_TE_PTR_KEY);
 167   
 168      /* Now create a new dialog, possibly with an "Apply" button, and 
 169         definitely with an "Add Expression..." button. */
 170      filter_browse_w = filter_dialog_new(w, parent_filter_te,
 171                                          DFILTER_LIST, construct_args);
 172  }
Show more  




Change Warning 4062.30163 : Unused Value

Priority:
State:
Finding:
Owner:
Note: