aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2026-04-09 06:58:14 -0400
committerGitHub <noreply@github.com>2026-04-09 06:58:14 -0400
commit1455ef340b1986ddd7e1c519f534ad051308a1ef (patch)
tree04255d8aa35cd689837614aa5c74bc8629037827 /CMakeLists.txt
parent269e2c5eb511ef74fe293c428202ddeb38ada0db (diff)
parente800cc620976bf6ea8198ac66811f4596b6a3af1 (diff)
downloadstasis-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.txt2
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})