Commit 00a6a1ac authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

compobj.dll16: Remove dead assignments in compobj.c (Cppcheck).

parent 9df1f2fa
...@@ -668,18 +668,17 @@ HRESULT WINAPI CLSIDFromProgID16(LPCOLESTR16 progid, LPCLSID riid) ...@@ -668,18 +668,17 @@ HRESULT WINAPI CLSIDFromProgID16(LPCOLESTR16 progid, LPCLSID riid)
{ {
char *buf,buf2[80]; char *buf,buf2[80];
LONG buf2len; LONG buf2len;
HRESULT err;
HKEY xhkey; HKEY xhkey;
buf = HeapAlloc(GetProcessHeap(),0,strlen(progid)+8); buf = HeapAlloc(GetProcessHeap(),0,strlen(progid)+8);
sprintf(buf,"%s\\CLSID",progid); sprintf(buf,"%s\\CLSID",progid);
if ((err=RegOpenKeyA(HKEY_CLASSES_ROOT,buf,&xhkey))) { if (RegOpenKeyA(HKEY_CLASSES_ROOT,buf,&xhkey)) {
HeapFree(GetProcessHeap(),0,buf); HeapFree(GetProcessHeap(),0,buf);
return CO_E_CLASSSTRING; return CO_E_CLASSSTRING;
} }
HeapFree(GetProcessHeap(),0,buf); HeapFree(GetProcessHeap(),0,buf);
buf2len = sizeof(buf2); buf2len = sizeof(buf2);
if ((err=RegQueryValueA(xhkey,NULL,buf2,&buf2len))) { if (RegQueryValueA(xhkey,NULL,buf2,&buf2len)) {
RegCloseKey(xhkey); RegCloseKey(xhkey);
return CO_E_CLASSSTRING; return CO_E_CLASSSTRING;
} }
......
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