diff options
| author | Philipp Stephani | 2020-08-01 17:12:30 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2020-08-01 17:12:30 +0200 |
| commit | 06310cf9122500faa96ad200888cfbb1dda56563 (patch) | |
| tree | eb7065cdedd8deef2cb55130bf8ff7de305112a9 /src/data.c | |
| parent | a2323c7ccb0eab1b6395d5d1d7e18db617354e13 (diff) | |
| download | emacs-06310cf9122500faa96ad200888cfbb1dda56563.tar.gz emacs-06310cf9122500faa96ad200888cfbb1dda56563.zip | |
Use a more precise check for '__lsan_ignore_object'
* configure.ac: Add check for __lsan_ignore_object.
* src/buffer.c (enlarge_buffer_text):
* src/data.c (make_blv):
* src/emacs-module.c (Fmodule_load, initialize_environment):
* src/regex-emacs.c (regex_compile):
* src/search.c (newline_cache_on_off): Use new configuration macro.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index c261e8e90dd..5fff52d24c2 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1788,7 +1788,7 @@ make_blv (struct Lisp_Symbol *sym, bool forwarded, | |||
| 1788 | set_blv_defcell (blv, tem); | 1788 | set_blv_defcell (blv, tem); |
| 1789 | set_blv_valcell (blv, tem); | 1789 | set_blv_valcell (blv, tem); |
| 1790 | set_blv_found (blv, false); | 1790 | set_blv_found (blv, false); |
| 1791 | #ifdef HAVE_SANITIZER_LSAN_INTERFACE_H | 1791 | #ifdef HAVE___LSAN_IGNORE_OBJECT |
| 1792 | __lsan_ignore_object (blv); | 1792 | __lsan_ignore_object (blv); |
| 1793 | #endif | 1793 | #endif |
| 1794 | return blv; | 1794 | return blv; |