[NTDLL/LDR]
authorAleksey Bragin <aleksey@reactos.org>
Fri, 8 Jul 2011 22:32:48 +0000 (22:32 +0000)
committerAleksey Bragin <aleksey@reactos.org>
Fri, 8 Jul 2011 22:32:48 +0000 (22:32 +0000)
- Comment out the actctx redirection check because it's placed wrongly. This should fix cases when a DLL is being loaded twice or more times for the same process. Spotted by Rafal Harabien.

svn path=/trunk/; revision=52577

reactos/dll/ntdll/ldr/ldrutils.c

index b3c4dce..194193e 100644 (file)
@@ -1519,11 +1519,11 @@ lookinhash:
             *LdrEntry = CurEntry;
 
             /* Find activation context */
-            Status = RtlFindActivationContextSectionString(0, NULL, ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION, DllName, NULL);
-            if (!NT_SUCCESS(Status))
-                return FALSE;
-            else
-                return TRUE;
+            //Status = RtlFindActivationContextSectionString(0, NULL, ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION, DllName, NULL);
+            //if (!NT_SUCCESS(Status))
+            //    return FALSE;
+            //else
+            return TRUE;
         }
     }