rpcss: Initialise some out-only parameters that aren't initialised by the generated RPC code.

oldstable
Rob Shearman 2007-12-29 12:13:48 +00:00 committed by Alexandre Julliard
parent 872188c1d8
commit 8b8795136d
1 changed files with 4 additions and 0 deletions

View File

@ -240,6 +240,8 @@ HRESULT IrotGetObject(
WINE_TRACE("%p\n", moniker_data);
*cookie = 0;
EnterCriticalSection(&csRunningObjectTable);
LIST_FOR_EACH_ENTRY(rot_entry, &RunningObjectTable, const struct rot_entry, entry)
@ -304,6 +306,8 @@ HRESULT IrotGetTimeOfLastChange(
WINE_TRACE("%p\n", moniker_data);
memset(time, 0, sizeof(*time));
EnterCriticalSection(&csRunningObjectTable);
LIST_FOR_EACH_ENTRY(rot_entry, &RunningObjectTable, const struct rot_entry, entry)
{