Commit 6598589e authored by Michael Jung's avatar Michael Jung Committed by Alexandre Julliard

ole32: Avoid leaving a critical section twice.

parent b57a322b
......@@ -817,11 +817,13 @@ RunningObjectTableImpl_NoteChangeTime(IRunningObjectTable* iface,
}
break;
}
break;
goto done;
}
}
LeaveCriticalSection(&This->lock);
done:
TRACE("-- 0x08%x\n", hr);
return hr;
}
......
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