Commit feb3d8e3 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

kernelbase: When enumerating calendars initialize optional to 0.

This fixes regression introduced by 42ed9797. Signed-off-by: 's avatarDmitry Timoshkov <dmitry@baikal.ru> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 866c4e2f
......@@ -173,7 +173,7 @@ BOOL WINAPI DECLSPEC_HOTPATCH Internal_EnumCalendarInfo( CALINFO_ENUMPROCW proc,
BOOL exex, LPARAM lparam )
{
WCHAR buffer[256];
DWORD optional;
DWORD optional = 0;
INT ret;
if (!proc)
......
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