mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-03 23:04:08 +01:00
On win32 too, return null when dict not found.
This commit is contained in:
parent
9acbe29bf5
commit
7c50cacc18
1 changed files with 18 additions and 17 deletions
|
@ -466,7 +466,7 @@ openMappedFile( MPFORMAL const wchar_t* name, HANDLE* mappedFileP,
|
||||||
OPEN_EXISTING,
|
OPEN_EXISTING,
|
||||||
FILE_FLAG_RANDOM_ACCESS,
|
FILE_FLAG_RANDOM_ACCESS,
|
||||||
NULL );
|
NULL );
|
||||||
XP_ASSERT( hFile != INVALID_HANDLE_VALUE );
|
if ( hFile != INVALID_HANDLE_VALUE ) {
|
||||||
|
|
||||||
DWORD size = GetFileSize( hFile, NULL );
|
DWORD size = GetFileSize( hFile, NULL );
|
||||||
XP_LOGF( "file size: %d", size );
|
XP_LOGF( "file size: %d", size );
|
||||||
|
@ -489,6 +489,7 @@ openMappedFile( MPFORMAL const wchar_t* name, HANDLE* mappedFileP,
|
||||||
*sizep = GetFileSize( hFile, NULL );
|
*sizep = GetFileSize( hFile, NULL );
|
||||||
}
|
}
|
||||||
*mappedFileP = (HANDLE)ptr;
|
*mappedFileP = (HANDLE)ptr;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
return ptr;
|
return ptr;
|
||||||
} /* openMappedFile */
|
} /* openMappedFile */
|
||||||
|
|
Loading…
Reference in a new issue