Fix incorrect memset

git-svn-id: http://tint2.googlecode.com/svn/trunk@653 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
o9000 2015-01-20 01:27:15 +00:00 committed by mrovi9000@gmail.com
parent 257cc45adc
commit dc137ef1a6

View file

@ -998,7 +998,7 @@ void dnd_drop(XClientMessageEvent *e)
//The source is sending anyway, despite instructions to the contrary.
//So reply that we're not interested.
XClientMessageEvent m;
memset(&m, sizeof(m), 0);
memset(&m, 0, sizeof(m));
m.type = ClientMessage;
m.display = e->display;
m.window = e->data.l[0];
@ -1304,7 +1304,7 @@ start:
// Reply OK.
XClientMessageEvent m;
memset(&m, sizeof(m), 0);
memset(&m, 0, sizeof(m));
m.type = ClientMessage;
m.display = server.dsp;
m.window = dnd_source_window;