diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-12-06 15:08:10 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-12-06 15:08:10 +0100 |
commit | d558cf6647406bdbb87c852772ad211670eff223 (patch) | |
tree | e1bdac9f78b1a43d5f1a79c278b7646946922f11 | |
parent | e287979b3eedb2c67a3c6da2991fdb56a4d35742 (diff) | |
download | uxp-d558cf6647406bdbb87c852772ad211670eff223.tar.gz |
Initialize all fields of GdkEvents in nsClipboard.cpp
-rw-r--r-- | widget/gtk/nsClipboard.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widget/gtk/nsClipboard.cpp b/widget/gtk/nsClipboard.cpp index eecae3e888..950be1dc4a 100644 --- a/widget/gtk/nsClipboard.cpp +++ b/widget/gtk/nsClipboard.cpp @@ -806,7 +806,7 @@ void GetHTMLCharset(guchar * data, int32_t dataLength, nsCString& str) static void DispatchSelectionNotifyEvent(GtkWidget *widget, XEvent *xevent) { - GdkEvent event; + GdkEvent event = {}; event.selection.type = GDK_SELECTION_NOTIFY; event.selection.window = gtk_widget_get_window(widget); event.selection.selection = gdk_x11_xatom_to_atom(xevent->xselection.selection); @@ -822,7 +822,7 @@ DispatchPropertyNotifyEvent(GtkWidget *widget, XEvent *xevent) { GdkWindow *window = gtk_widget_get_window(widget); if ((gdk_window_get_events(window)) & GDK_PROPERTY_CHANGE_MASK) { - GdkEvent event; + GdkEvent event = {}; event.property.type = GDK_PROPERTY_NOTIFY; event.property.window = window; event.property.atom = gdk_x11_xatom_to_atom(xevent->xproperty.atom); |