mirror of
https://github.com/glfw/glfw.git
synced 2026-02-21 06:33:03 +01:00
Fixed broken calls to memset.
This commit is contained in:
@@ -749,7 +749,7 @@ static void processEvent(XEvent *event)
|
||||
|
||||
// Xdnd: reply with an XDND status message
|
||||
XEvent reply;
|
||||
memset(&reply, sizeof(reply), 0);
|
||||
memset(&reply, 0, sizeof(reply));
|
||||
|
||||
reply.type = ClientMessage;
|
||||
reply.xclient.window = event->xclient.data.l[0];
|
||||
@@ -812,7 +812,8 @@ static void processEvent(XEvent *event)
|
||||
}
|
||||
|
||||
XEvent reply;
|
||||
memset(&reply, sizeof(reply), 0);
|
||||
memset(&reply, 0, sizeof(reply));
|
||||
|
||||
reply.type = ClientMessage;
|
||||
reply.xclient.window = _glfw.x11.xdnd.sourceWindow;
|
||||
reply.xclient.message_type = _glfw.x11.XdndFinished;
|
||||
|
||||
Reference in New Issue
Block a user