diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2026-04-09 06:58:14 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-09 06:58:14 -0400 |
| commit | 1455ef340b1986ddd7e1c519f534ad051308a1ef (patch) | |
| tree | 04255d8aa35cd689837614aa5c74bc8629037827 /CMakeLists.txt | |
| parent | 269e2c5eb511ef74fe293c428202ddeb38ada0db (diff) | |
| parent | e800cc620976bf6ea8198ac66811f4596b6a3af1 (diff) | |
| download | stasis-1455ef340b1986ddd7e1c519f534ad051308a1ef.tar.gz | |
Merge pull request #131 from jhunkeler/realloc-sefault-tests_add
tests_add: Fix incorrect size used by realloc
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index bd214ca..71e310b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ find_package(LibXml2) find_package(CURL) option(ASAN "Address Analyzer" OFF) -set(ASAN_OPTIONS "-fsanitize=address,leak,null,undefined") +set(ASAN_OPTIONS "-fsanitize=address,null,undefined") if (ASAN) add_compile_options(${ASAN_OPTIONS} -fno-omit-frame-pointer -g -O0) add_link_options(${ASAN_OPTIONS}) |
