-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Open
Labels
Description
Bugzilla Link | 52264 |
Version | unspecified |
OS | All |
CC | @acmorrow |
Extended Description
It appears that there are some 16K static buffers for the symbolizer:
-
char buffer_[kBufferSize]; -
static const uptr kBufferSize = 16 * 1024;
I have recently encountered some events where it appears that one or more of these buffers is not sufficient when symbolizing sanitizer failures, leading to messages like:
==4094==WARNING: Symbolizer buffer too small
Would it be possible to expand these to something larger, maybe 1M? While no fixed-sized buffer can handle everything, 16K feels very conservative.