devenum: Fix uninitialized clsidString (Coverity).

oldstable
Marcus Meissner 2007-02-01 15:36:15 +01:00 committed by Alexandre Julliard
parent 0fcc10fc3c
commit 6239bf6fe3
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ HRESULT WINAPI DllUnregisterServer(void)
static HRESULT register_clsids(int count, const register_info * pRegInfo, LPCWSTR pszThreadingModel)
{
HRESULT res = S_OK;
LPOLESTR clsidString;
LPOLESTR clsidString = NULL;
HKEY hkeyClsid;
HKEY hkeySub;
HKEY hkeyInproc32;