[NTDLL/LDR]

- Fix SxS path calculation, now it returns proper full path to the DLL instead of just "C:\ReactOS\winsxs". Spotted by AbiWord 2.9.2.

svn path=/trunk/; revision=54659
This commit is contained in:
Aleksey Bragin 2011-12-16 13:39:48 +00:00
parent 94367a3205
commit 82c522f2ea

View file

@ -45,7 +45,7 @@ NTSTATUS create_module_activation_context( LDR_DATA_TABLE_ENTRY *module )
NTSTATUS find_actctx_dll( LPCWSTR libname, WCHAR *fullname )
{
static const WCHAR winsxsW[] = {'\\','w','i','n','s','x','s','\\',0};
static const WCHAR winsxsW[] = {'\\','w','i','n','s','x','s','\\'};
static const WCHAR dotManifestW[] = {'.','m','a','n','i','f','e','s','t',0};
ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION *info;