Fixed broken calls to memset.

This commit is contained in:
Camilla Berglund 2013-12-22 16:40:06 +01:00
parent 8ae063bb1b
commit ad9f880d61

View File

@ -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;