Commit 8b20d720 authored by Ulrich Czekalla's avatar Ulrich Czekalla Committed by Alexandre Julliard

Clear systemtime struct so we don't return garbage in uninitialized

fields.
parent d3f5fa89
......@@ -1151,6 +1151,7 @@ MONTHCAL_HitTest(MONTHCAL_INFO *infoPtr, LPARAM lParam)
y = lpht->pt.y;
retval = MCHT_NOWHERE;
ZeroMemory(&lpht->st, sizeof(lpht->st));
/* Comment in for debugging...
TRACE("%d %d wd[%d %d %d %d] d[%d %d %d %d] t[%d %d %d %d] wn[%d %d %d %d]\n", x, y,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment