diff options
author | Philipp Stephani <phst@google.com> | 2020-08-01 16:55:45 +0200 |
---|---|---|
committer | Philipp Stephani <phst@google.com> | 2020-08-01 17:01:00 +0200 |
commit | 91d539b0772d4b2a6bdc3fbccf92dc1fcc7f747a (patch) | |
tree | 325771ff001c5b82e5d5b7126ca61a8f68ec7346 /src/regex-emacs.c | |
parent | 4ea90a711d11b14be728241a4454f8c5ee7b6478 (diff) | |
download | emacs-91d539b0772d4b2a6bdc3fbccf92dc1fcc7f747a.tar.gz emacs-91d539b0772d4b2a6bdc3fbccf92dc1fcc7f747a.tar.bz2 emacs-91d539b0772d4b2a6bdc3fbccf92dc1fcc7f747a.zip |
Suppress leak sanitizer in a few more places
* src/regex-emacs.c (regex_compile):
src/search.c (newline_cache_on_off): Suppress leak sanitizer.
Diffstat (limited to 'src/regex-emacs.c')
-rw-r--r-- | src/regex-emacs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/regex-emacs.c b/src/regex-emacs.c index ba7f3cef64b..5c08c81c0b5 100644 --- a/src/regex-emacs.c +++ b/src/regex-emacs.c @@ -29,6 +29,10 @@ #include <stdlib.h> +#ifdef HAVE_SANITIZER_LSAN_INTERFACE_H +#include <sanitizer/lsan_interface.h> +#endif + #include "character.h" #include "buffer.h" #include "syntax.h" @@ -1757,6 +1761,9 @@ regex_compile (re_char *pattern, ptrdiff_t size, /* Initialize the compile stack. */ compile_stack.stack = xmalloc (INIT_COMPILE_STACK_SIZE * sizeof *compile_stack.stack); +#ifdef HAVE_SANITIZER_LSAN_INTERFACE_H + __lsan_ignore_object (compile_stack.stack); +#endif compile_stack.size = INIT_COMPILE_STACK_SIZE; compile_stack.avail = 0; |