Dangerous Function Cast at drag_and_drop.c:382 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dnd_init (/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/drag_and_drop.c)![]() | ||||||
![]() | ||||||
372 | {"text/uri-list", 0, DND_TARGET_URL} | |||||
373 | }; | |||||
374 | ||||||
375 | /* set this window as a dnd destination */ | |||||
376 | gtk_drag_dest_set( | |||||
377 | w, GTK_DEST_DEFAULT_ALL, target_entry, | |||||
378 | sizeof(target_entry) / sizeof(GtkTargetEntry), | |||||
379 | (GdkDragAction)(GDK_ACTION_MOVE | GDK_ACTION_COPY) ); | |||||
380 | ||||||
381 | /* get notified, if some dnd coming in */ | |||||
382 | g_signal_connect(w, "drag_data_received", G_CALLBACK(dnd_data_received), NULL);
| |||||
383 | } | |||||
384 | ||||||
385 | ||||||
![]() |