diff options
author | Olaf Hering <olaf@aepfle.de> | 2020-07-07 19:13:25 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2020-07-13 11:40:52 +0200 |
commit | d1abf3fc6abc01fd5f8985af92726f87b5efd80a (patch) | |
tree | 83da24b1408c1480000e534fd65b9497d25533a1 | |
parent | 9f526fce49c6ac48114ed04914b5a76e4db75785 (diff) |
configure: fix malloc check
Avoid random return value.
Fixes commit f2dfe54c74f768a5bf78c9e5918918727f9d9459
Signed-off-by: Olaf Hering <olaf@aepfle.de>
Message-Id: <20200707171326.16422-1-olaf@aepfle.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6343,6 +6343,7 @@ int main(void) { if (tmp != NULL) { return *(int *)(tmp + 2); } + return 1; } EOF if compile_prog "$CPU_CFLAGS -Werror -fsanitize=undefined" ""; then |