@@ -4084,7 +4084,7 @@ AppDomain::AssemblyIterator::Next_Unlocked(
40844084#if !defined(DACCESS_COMPILE)
40854085
40864086// Returns S_OK if the assembly was successfully loaded
4087- HRESULT RuntimeInvokeHostAssemblyResolver (INT_PTR pManagedAssemblyLoadContextToBindWithin , BINDER_SPACE::AssemblyName *pAssemblyName, DefaultAssemblyBinder *pDefaultBinder, AssemblyBinder *pBinder, BINDER_SPACE::Assembly **ppLoadedAssembly)
4087+ HRESULT RuntimeInvokeHostAssemblyResolver (INT_PTR pAssemblyLoadContextToBindWithin , BINDER_SPACE::AssemblyName *pAssemblyName, DefaultAssemblyBinder *pDefaultBinder, AssemblyBinder *pBinder, BINDER_SPACE::Assembly **ppLoadedAssembly)
40884088{
40894089 CONTRACTL
40904090 {
@@ -4114,7 +4114,7 @@ HRESULT RuntimeInvokeHostAssemblyResolver(INT_PTR pManagedAssemblyLoadContextToB
41144114 BINDER_SPACE::Assembly *pResolvedAssembly = NULL ;
41154115
41164116 bool fResolvedAssembly = false ;
4117- BinderTracing::ResolutionAttemptedOperation tracer{pAssemblyName, 0 /* binderID*/ , pManagedAssemblyLoadContextToBindWithin , hr};
4117+ BinderTracing::ResolutionAttemptedOperation tracer{pAssemblyName, 0 /* binderID*/ , pAssemblyLoadContextToBindWithin , hr};
41184118
41194119 // Allocate an AssemblyName managed object
41204120 _gcRefs.oRefAssemblyName = (ASSEMBLYNAMEREF) AllocateObject (CoreLibBinder::GetClass (CLASS__ASSEMBLY_NAME));
@@ -4138,7 +4138,7 @@ HRESULT RuntimeInvokeHostAssemblyResolver(INT_PTR pManagedAssemblyLoadContextToB
41384138 // Setup the arguments for the call
41394139 ARG_SLOT args[2 ] =
41404140 {
4141- PtrToArgSlot (pManagedAssemblyLoadContextToBindWithin ), // IntPtr for managed assembly load context instance
4141+ PtrToArgSlot (pAssemblyLoadContextToBindWithin ), // IntPtr for managed assembly load context instance
41424142 ObjToArgSlot (_gcRefs.oRefAssemblyName ), // AssemblyName instance
41434143 };
41444144
@@ -4185,7 +4185,7 @@ HRESULT RuntimeInvokeHostAssemblyResolver(INT_PTR pManagedAssemblyLoadContextToB
41854185 // Setup the arguments for the call
41864186 ARG_SLOT args[2 ] =
41874187 {
4188- PtrToArgSlot (pManagedAssemblyLoadContextToBindWithin ), // IntPtr for managed assembly load context instance
4188+ PtrToArgSlot (pAssemblyLoadContextToBindWithin ), // IntPtr for managed assembly load context instance
41894189 ObjToArgSlot (_gcRefs.oRefAssemblyName ), // AssemblyName instance
41904190 };
41914191
@@ -4214,7 +4214,7 @@ HRESULT RuntimeInvokeHostAssemblyResolver(INT_PTR pManagedAssemblyLoadContextToB
42144214 // Setup the arguments for the call
42154215 ARG_SLOT args[2 ] =
42164216 {
4217- PtrToArgSlot (pManagedAssemblyLoadContextToBindWithin ), // IntPtr for managed assembly load context instance
4217+ PtrToArgSlot (pAssemblyLoadContextToBindWithin ), // IntPtr for managed assembly load context instance
42184218 ObjToArgSlot (_gcRefs.oRefAssemblyName ), // AssemblyName instance
42194219 };
42204220
0 commit comments