diff options
author | midipix <writeonce@midipix.org> | 2016-12-14 05:33:13 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-12-15 01:47:46 -0500 |
commit | ee679ad54e06fcb6f6385abd697c89de635139f7 (patch) | |
tree | dbb93d530f35cf7ae5e8fa81d0727e5d81f9232c /include | |
parent | d8a635ad2bfb881a339d37f3abc21a77b49362a6 (diff) | |
download | ntapi-ee679ad54e06fcb6f6385abd697c89de635139f7.tar.bz2 ntapi-ee679ad54e06fcb6f6385abd697c89de635139f7.tar.xz |
__ntapi_ldr_load_system_dll(): have size match strlen in nt_unicode_string.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_ldr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ntapi/nt_ldr.h b/include/ntapi/nt_ldr.h index b438b34..0c15472 100644 --- a/include/ntapi/nt_ldr.h +++ b/include/ntapi/nt_ldr.h @@ -20,7 +20,7 @@ typedef int32_t __stdcall ntapi_ldr_unload_dll( typedef int32_t __stdcall ntapi_ldr_load_system_dll( __in void * hsysdir __optional, __in wchar16_t * base_name, - __in uint32_t base_name_size, + __in uint16_t base_name_size, __in uint32_t * image_flags __optional, __out void ** image_base); |