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:
Peter Krempa 2023-09-04 14:07:31 +02:00
parent b68faa99d9
commit d9c04cdc34

View 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