mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
build: Fix assignment into 'stack_frame_size' when sanitizer is enabled
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: b68faa99d9
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user