Commit 6239bf6f authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

devenum: Fix uninitialized clsidString (Coverity).

parent 0fcc10fc
...@@ -296,7 +296,7 @@ HRESULT WINAPI DllUnregisterServer(void) ...@@ -296,7 +296,7 @@ HRESULT WINAPI DllUnregisterServer(void)
static HRESULT register_clsids(int count, const register_info * pRegInfo, LPCWSTR pszThreadingModel) static HRESULT register_clsids(int count, const register_info * pRegInfo, LPCWSTR pszThreadingModel)
{ {
HRESULT res = S_OK; HRESULT res = S_OK;
LPOLESTR clsidString; LPOLESTR clsidString = NULL;
HKEY hkeyClsid; HKEY hkeyClsid;
HKEY hkeySub; HKEY hkeySub;
HKEY hkeyInproc32; HKEY hkeyInproc32;
......
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