Commit 8b879513 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

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

parent 872188c1
......@@ -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)
{
......
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