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
This commit is contained in:
Magnus Olsen 2005-10-09 22:35:54 +00:00
parent ea1ba0aefd
commit 0c2ceade45

View file

@ -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;
}