diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-12-19 12:52:32 +1100 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-12-19 12:52:32 +1100 |
commit | fdd649e2ef56ea473e253511d35fe6c10e0fb241 (patch) | |
tree | 82bf8e6a7cd1dd344c9bb0b3a728fc17c38de629 /src/core/memory.cpp | |
parent | 39262921f274ca81f98c8504de36378e20a985a6 (diff) |
Fixed uninitialized memory due to missing returns in canary
Functions which are suppose to crash on non canary builds usually don't return anything which lead to uninitialized memory being used.
Diffstat (limited to 'src/core/memory.cpp')
-rw-r--r-- | src/core/memory.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 643afdee8..e9166dbd9 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -187,6 +187,7 @@ T Read(const VAddr vaddr) { default: UNREACHABLE(); } + return {}; } template <typename T> |