ole32: Avoid leaving a critical section twice.

This commit is contained in:
Michael Jung 2007-12-21 08:18:35 +01:00 committed by Alexandre Julliard
parent b57a322b02
commit 6598589ebd
1 changed files with 3 additions and 1 deletions

View File

@ -817,11 +817,13 @@ RunningObjectTableImpl_NoteChangeTime(IRunningObjectTable* iface,
}
break;
}
break;
goto done;
}
}
LeaveCriticalSection(&This->lock);
done:
TRACE("-- 0x08%x\n", hr);
return hr;
}