forked from OSchip/llvm-project
[esan] Fix ESan test failure on Debian Sid bot
Summary: Increase early allocation buffer size. Reviewers: bruening Subscribers: kubabrecka Differential Revision: https://reviews.llvm.org/D25380 llvm-svn: 283598
This commit is contained in:
parent
ecaf343fe7
commit
998371f3be
|
@ -461,7 +461,7 @@ INTERCEPTOR(int, pthread_sigmask, int how, __sanitizer_sigset_t *set,
|
|||
// Malloc interceptors
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
static const uptr early_alloc_buf_size = 1024;
|
||||
static const uptr early_alloc_buf_size = 4096;
|
||||
static uptr allocated_bytes;
|
||||
static char early_alloc_buf[early_alloc_buf_size];
|
||||
|
||||
|
|
Loading…
Reference in New Issue