Revert unretained dangling ptr detector crash by default (fixes #3693)
This commit is contained in:
parent
0580f93839
commit
69ce47ae4c
|
@ -801,5 +801,12 @@ patches = [
|
||||||
# Reverts
|
# Reverts
|
||||||
# https://chromium-review.googlesource.com/c/chromium/src/+/5454331
|
# https://chromium-review.googlesource.com/c/chromium/src/+/5454331
|
||||||
'name': 'win_partition_freelist_entry_336007395'
|
'name': 'win_partition_freelist_entry_336007395'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
# Revert unretained dangling ptr detector crash by default.
|
||||||
|
# https://github.com/chromiumembedded/cef/issues/3693
|
||||||
|
# Reverts
|
||||||
|
# https://chromium-review.googlesource.com/c/chromium/src/+/5351597
|
||||||
|
'name': 'base_allocator_unretained_dangling_ptr_5351597'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
diff --git base/allocator/partition_alloc_features.cc base/allocator/partition_alloc_features.cc
|
||||||
|
index a2616fced0f5b..cacd41b0ffa23 100644
|
||||||
|
--- base/allocator/partition_alloc_features.cc
|
||||||
|
+++ base/allocator/partition_alloc_features.cc
|
||||||
|
@@ -36,7 +36,7 @@ const base::FeatureParam<UnretainedDanglingPtrMode>
|
||||||
|
kUnretainedDanglingPtrModeParam = {
|
||||||
|
&kPartitionAllocUnretainedDanglingPtr,
|
||||||
|
"mode",
|
||||||
|
- UnretainedDanglingPtrMode::kCrash,
|
||||||
|
+ UnretainedDanglingPtrMode::kDumpWithoutCrashing,
|
||||||
|
&kUnretainedDanglingPtrModeOption,
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue