]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
build: Fix assignment into 'stack_frame_size' when sanitizer is enabled
authorPeter Krempa <pkrempa@redhat.com>
Mon, 4 Sep 2023 12:07:31 +0000 (14:07 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Mon, 4 Sep 2023 12:07:31 +0000 (14:07 +0200)
Instead of an assignment into the 'stack_frame_size' variable when
sanitizers are enabled I've accidentally compared the value against the
requested size.

Fix the typo.

Fixes: b68faa99d9f16c2f504b23737040d25d072ee85d
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
meson.build

index d29761bc719d108c7d40d4b6c483e248837d4fa2..e0ee4f2f21c2640f92801d25209b16a9cbe48226 100644 (file)
@@ -256,7 +256,7 @@ endif
 
 # sanitizer instrumentation may enlarge stack frames
 if get_option('b_sanitize') == 'none'
-  stack_frame_size == 32768
+  stack_frame_size = 32768
 endif
 
 # array_bounds=2 check triggers false positive on some GCC