mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-11-24 10:45:47 +01:00
Add missing (parentehses.)
BUG=247, chromium:94107 TEST=Minidump file sizes should be manageable Review URL: http://breakpad.appspot.com/300002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@827 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
60a883212f
commit
ce8d2156e8
@ -285,7 +285,7 @@ size_t MinidumpGenerator::CalculateStackSize(mach_vm_address_t start_addr) {
|
||||
if (result != KERN_SUCCESS ||
|
||||
next_region_base != proposed_next_region_base ||
|
||||
submap_info.user_tag != tag ||
|
||||
submap_info.protection & VM_PROT_READ == 0) {
|
||||
(submap_info.protection & VM_PROT_READ) == 0) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user