Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit c567999

Browse files
author
Evgeny Pavlov
committed
Set hr to S_OK instead of returning S_OK
1 parent 177d1d2 commit c567999

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dlls/mscoree/unixinterface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ int coreclr_initialize(
261261
"Can't create delegate for 'System.Diagnostics.Debug.SymbolReader.SymbolReader.GetInfoForMethod' "
262262
"method - status: 0x%08x\n", hr);
263263
}
264-
return S_OK; // We don't need to fail if we can't create delegate
264+
hr = S_OK; // We don't need to fail if we can't create delegate
265265
#endif
266266
}
267267
return hr;

0 commit comments

Comments
 (0)