summaryrefslogtreecommitdiff
path: root/src/vm/clrprivbinderwinrt.cpp
diff options
context:
space:
mode:
authorSteve MacLean <stmaclea@microsoft.com>2018-12-05 13:03:56 -0500
committerGitHub <noreply@github.com>2018-12-05 13:03:56 -0500
commit339694220684c079698bb0e3656011b9522d26f3 (patch)
tree12ca9f9d93b157d3c80fed546ff93705d67bd4c7 /src/vm/clrprivbinderwinrt.cpp
parent6496481b4eec064188a50bcf5132191273d088f6 (diff)
downloadcoreclr-339694220684c079698bb0e3656011b9522d26f3.tar.gz
coreclr-339694220684c079698bb0e3656011b9522d26f3.tar.bz2
coreclr-339694220684c079698bb0e3656011b9522d26f3.zip
Remove FromGAC & OnTPAList (#21371)
* Remove FromGAC & OnTPAList * PR feedback
Diffstat (limited to 'src/vm/clrprivbinderwinrt.cpp')
-rw-r--r--src/vm/clrprivbinderwinrt.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/vm/clrprivbinderwinrt.cpp b/src/vm/clrprivbinderwinrt.cpp
index a4d009b63e..23bf65230a 100644
--- a/src/vm/clrprivbinderwinrt.cpp
+++ b/src/vm/clrprivbinderwinrt.cpp
@@ -338,9 +338,7 @@ HRESULT CLRPrivBinderWinRT::BindWinRTAssemblyByName(
IfFailGo(GetAssemblyAndTryFindNativeImage(sAssemblyPath, wszFileNameStripped, &pBinderAssembly));
- // We have set bInGac to TRUE here because the plan is full trust for WinRT. If this changes, we may need to check with
- // AppDomain to verify trust based on the WinMD's path
- pBindResult->Init(pBinderAssembly, TRUE);
+ pBindResult->Init(pBinderAssembly);
NewHolder<CLRPrivAssemblyWinRT> pNewAssembly(
new CLRPrivAssemblyWinRT(this, pResource, pBindResult, fIsWindowsNamespace));