mscoree: Use SUCCEEDED instead of !FAILED.
This commit is contained in:
parent
e72845e648
commit
60d54eee93
|
@ -1318,7 +1318,7 @@ HRESULT create_monodata(REFIID riid, LPVOID *ppObj )
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
hr = get_file_from_strongname(assemblyname, filename, MAX_PATH);
|
hr = get_file_from_strongname(assemblyname, filename, MAX_PATH);
|
||||||
if (!SUCCEEDED(hr))
|
if (FAILED(hr))
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* The registry doesn't have a CodeBase entry and it's not in the GAC.
|
* The registry doesn't have a CodeBase entry and it's not in the GAC.
|
||||||
|
|
Loading…
Reference in New Issue