summaryrefslogtreecommitdiffhomepage
path: root/src/ldso/pe_open_image_from_addr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ldso/pe_open_image_from_addr.c')
-rw-r--r--src/ldso/pe_open_image_from_addr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ldso/pe_open_image_from_addr.c b/src/ldso/pe_open_image_from_addr.c
index 810503c..b8a1845 100644
--- a/src/ldso/pe_open_image_from_addr.c
+++ b/src/ldso/pe_open_image_from_addr.c
@@ -18,7 +18,7 @@ pe_api int32_t pe_open_image_from_addr(
__out void ** himage,
__in void * addr,
__out uintptr_t * buffer,
- __in uint32_t buffer_size,
+ __in size_t bufsize,
__in uint32_t oattr,
__in uint32_t desired_access,
__in uint32_t share_access,
@@ -37,7 +37,7 @@ pe_api int32_t pe_open_image_from_addr(
/* init */
path = (struct os_memory_section_name *)buffer;
path->section_name.strlen = 0;
- path->section_name.maxlen = (uint16_t)(buffer_size - sizeof(struct pe_unicode_str));
+ path->section_name.maxlen = (uint16_t)(bufsize - sizeof(struct pe_unicode_str));
path->section_name.buffer = path->section_name_buffer;
if (!(hntdll = pe_get_ntdll_module_handle()))
@@ -57,7 +57,7 @@ pe_api int32_t pe_open_image_from_addr(
addr,
OS_MEMORY_SECTION_NAME,
buffer,
- buffer_size,
+ bufsize,
&len)))
return status;