search for: r312582

Displaying 2 results from an estimated 2 matches for "r312582".

Did you mean: 31252
2017 Sep 06
2
Temporary disable ASan's allocator check
...n_null at runtime or somehow disable this check temporarily? If I install an LLVM bad_alloc_error_handler, ASan's allocator wrapper detects this first and terminates the process instead of returning 0, preventing the custom handler from being called. > > Is this question related to "r312582 - Revert "[Decompression] Fail gracefully when out of memory”"? It is! Though even if we don't need it, I’d still be interested to know whether this is possible. If the answer is no, I wonder how useful error handler is (which isn't currently used, at least not upstream). >...
2017 Sep 06
2
Temporary disable ASan's allocator check
Hi all, Is it possible to change the value of ASan's allocator_may_return_null at runtime or somehow disable this check temporarily? If I install an LLVM bad_alloc_error_handler, ASan's allocator wrapper detects this first and terminates the process instead of returning 0, preventing the custom handler from being called. Thanks, Jonas