On win32 too, return null when dict not found.

This commit is contained in:
ehouse 2006-04-24 13:36:23 +00:00
parent 1b447272b2
commit 6687984bf0

View file

@ -466,7 +466,7 @@ openMappedFile( MPFORMAL const wchar_t* name, HANDLE* mappedFileP,
OPEN_EXISTING,
FILE_FLAG_RANDOM_ACCESS,
NULL );
XP_ASSERT( hFile != INVALID_HANDLE_VALUE );
if ( hFile != INVALID_HANDLE_VALUE ) {
DWORD size = GetFileSize( hFile, NULL );
XP_LOGF( "file size: %d", size );
@ -489,6 +489,7 @@ openMappedFile( MPFORMAL const wchar_t* name, HANDLE* mappedFileP,
*sizep = GetFileSize( hFile, NULL );
}
*mappedFileP = (HANDLE)ptr;
}
#endif
return ptr;
} /* openMappedFile */