mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-19 03:57:14 +01:00
Fix maxminddb call to CreateFile.
This commit is contained in:
parent
82f183599f
commit
02dc14f26a
2
module/Vendor/MaxmindDB/src/maxminddb.c
vendored
2
module/Vendor/MaxmindDB/src/maxminddb.c
vendored
@ -343,7 +343,7 @@ LOCAL int map_file(MMDB_s *const mmdb)
|
||||
status = MMDB_FILE_OPEN_ERROR;
|
||||
goto cleanup;
|
||||
}
|
||||
fd = CreateFile(utf16_filename, GENERIC_READ, FILE_SHARE_READ, NULL,
|
||||
fd = CreateFileW(utf16_filename, GENERIC_READ, FILE_SHARE_READ, NULL,
|
||||
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
||||
if (fd == INVALID_HANDLE_VALUE) {
|
||||
status = MMDB_FILE_OPEN_ERROR;
|
||||
|
Loading…
x
Reference in New Issue
Block a user