diff options
author | Liam <byteslice@airmail.cc> | 2023-07-30 02:43:34 +0200 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-08-08 17:09:37 +0200 |
commit | 37b278a9a85fb934fa78ce4abf12a2c9df7d7112 (patch) | |
tree | 7f772ed7cdd56a4b75df1b3873a0a91996567892 /src/core/hle/service/ldr | |
parent | ssl: remove ResultVal use (diff) | |
download | yuzu-37b278a9a85fb934fa78ce4abf12a2c9df7d7112.tar yuzu-37b278a9a85fb934fa78ce4abf12a2c9df7d7112.tar.gz yuzu-37b278a9a85fb934fa78ce4abf12a2c9df7d7112.tar.bz2 yuzu-37b278a9a85fb934fa78ce4abf12a2c9df7d7112.tar.lz yuzu-37b278a9a85fb934fa78ce4abf12a2c9df7d7112.tar.xz yuzu-37b278a9a85fb934fa78ce4abf12a2c9df7d7112.tar.zst yuzu-37b278a9a85fb934fa78ce4abf12a2c9df7d7112.zip |
Diffstat (limited to 'src/core/hle/service/ldr')
-rw-r--r-- | src/core/hle/service/ldr/ldr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ldr/ldr.cpp b/src/core/hle/service/ldr/ldr.cpp index 95c5b7c8e..c73035c77 100644 --- a/src/core/hle/service/ldr/ldr.cpp +++ b/src/core/hle/service/ldr/ldr.cpp @@ -545,7 +545,7 @@ public: } // Map memory for the NRO - VAddr map_location; + VAddr map_location{}; const auto map_result{MapNro(&map_location, system.ApplicationProcess(), nro_address, nro_size, bss_address, bss_size, nro_size + bss_size)}; if (map_result != ResultSuccess) { |