Commit 7e181f49 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

Fix for the return codes for the Qualified component calls. They are

not INSTALLSTATEs but rather success values.
parent b965457c
......@@ -1375,7 +1375,11 @@ UINT WINAPI MsiProvideQualifiedComponentExW(LPCWSTR szComponent,
HeapFree(GetProcessHeap(),0,info);
HeapFree(GetProcessHeap(),0,product);
HeapFree(GetProcessHeap(),0,component);
return rc;
if (rc == INSTALLSTATE_LOCAL)
return ERROR_SUCCESS;
else
return ERROR_FILE_NOT_FOUND;
}
UINT WINAPI MsiProvideQualifiedComponentW( LPCWSTR szComponent,
......
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