Text   |  XML   |  ReML   |   Visible Warnings:

Uninitialized Variable  at gtkvumeter.c:272

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

gtk_vumeter_size_allocate

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/gtkvumeter.c)expand/collapse
Show more  
 256  static void gtk_vumeter_size_allocate (GtkWidget *widget, GtkAllocation *allocation)
 257  {
 258      GtkVUMeter *vumeter;
 259      GtkRequisition requisition;
 260       
 261      g_return_if_fail (GTK_IS_VUMETER (widget));
 262      g_return_if_fail (allocation != NULL);
 263   
 264      widget->allocation = *allocation;
 265      vumeter = GTK_VUMETER (widget);
 266   
 267[+]     gtk_vumeter_size_calculate(widget, &requisition);
 268   
 269      if (GTK_WIDGET_REALIZED (widget)) {
 270          gdk_window_move_resize (widget->window, allocation->x, allocation->y,
 271                          MAX (allocation->width, requisition.width),
 272              MAX (allocation->height, requisition.height));
Show more  




Change Warning 4105.29868 : Uninitialized Variable

Priority:
State:
Finding:
Owner:
Note: