diff options
author | mailwl <mailwl@gmail.com> | 2016-04-07 11:26:12 +0300 |
---|---|---|
committer | mailwl <mailwl@gmail.com> | 2016-04-21 10:34:45 +0300 |
commit | bd8cc69893e49ff0615c326301d8d2a5a49bee7e (patch) | |
tree | a9dfceb164977639f8945b82dbeef71733966317 /src/core/hle/svc.cpp | |
parent | 24bd57b6bf75bc853e4211c2023abc52ea651cd3 (diff) |
ac:u: stub CloseAsync; check memory size aling in svc:GetProcessInfo(type=2)
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r-- | src/core/hle/svc.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index ae54afb1c..1112a905e 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -860,6 +860,10 @@ static ResultCode GetProcessInfo(s64* out, Handle process_handle, u32 type) { // TODO(yuriks): Type 0 returns a slightly higher number than type 2, but I'm not sure // what's the difference between them. *out = process->heap_used + process->linear_heap_used + process->misc_memory_used; + if(*out % Memory::PAGE_SIZE != 0) { + LOG_ERROR(Kernel_SVC, "called, memory size not page-aligned"); + return ERR_MISALIGNED_SIZE; + } break; case 1: case 3: |