projects
/
platform
/
upstream
/
dotnet
/
runtime.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0cc9887
)
Add missing check to allow assembly bound using the Resolving event to be used during...
author
Gaurav Khanna
<gkhanna@microsoft.com>
Fri, 17 Jun 2016 13:29:41 +0000
(06:29 -0700)
committer
Gaurav Khanna
<gkhanna@microsoft.com>
Fri, 17 Jun 2016 13:29:41 +0000
(06:29 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/
c335d794bd56f4971bd37bbb220b753ea04ec837
src/coreclr/src/vm/appdomain.cpp
patch
|
blob
|
history
diff --git
a/src/coreclr/src/vm/appdomain.cpp
b/src/coreclr/src/vm/appdomain.cpp
index
eac6311
..
4580c5a
100644
(file)
--- a/
src/coreclr/src/vm/appdomain.cpp
+++ b/
src/coreclr/src/vm/appdomain.cpp
@@
-14319,6
+14319,11
@@
HRESULT RuntimeInvokeHostAssemblyResolver(INT_PTR pManagedAssemblyLoadContextToB
// Make the call
_gcRefs.oRefLoadedAssembly = (ASSEMBLYREF) methLoadAssembly.Call_RetOBJECTREF(args);
+ if (_gcRefs.oRefLoadedAssembly != NULL)
+ {
+ // Set the flag indicating we found the assembly
+ fResolvedAssembly = true;
+ }
}
if (fResolvedAssembly && !fResolvedAssemblyViaTPALoadContext)