From 0c2ceade45af375f740fe12de55d3fe55e62ac5a Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Sun, 9 Oct 2005 22:35:54 +0000 Subject: [PATCH] Comment out a fixme, it make a user mode crash (ntoskrnl\ke\exception.c:94 KiRaiseException ), after this viso installer start working, thx Christoph_vW to found it. svn path=/trunk/; revision=18391 --- reactos/lib/msi/msi.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/lib/msi/msi.c b/reactos/lib/msi/msi.c index af1728dd81d..bc52d1ab54a 100644 --- a/reactos/lib/msi/msi.c +++ b/reactos/lib/msi/msi.c @@ -821,7 +821,9 @@ LANGID WINAPI MsiLoadStringA( MSIHANDLE handle, UINT id, LPSTR lpBuffer, INSTALLSTATE WINAPI MsiLocateComponentA(LPCSTR szComponent, LPSTR lpPathBuf, DWORD *pcchBuf) { - FIXME("%s %p %p\n", debugstr_a(szComponent), lpPathBuf, pcchBuf); + /* This FIXME will crash some installer + * FIXME("%s %p %p\n", debugstr_a(szComponent), lpPathBuf, pcchBuf); + */ return INSTALLSTATE_UNKNOWN; }