mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00: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:
parent
b68faa99d9
commit
d9c04cdc34
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user