diff options
author | Olaf Hering | 2020-07-07 19:13:25 +0200 |
---|---|---|
committer | Thomas Huth | 2020-07-13 11:40:52 +0200 |
commit | d1abf3fc6abc01fd5f8985af92726f87b5efd80a (patch) | |
tree | 83da24b1408c1480000e534fd65b9497d25533a1 /configure | |
parent | Merge remote-tracking branch 'remotes/stsquad/tags/pull-testing-and-misc-1107... (diff) | |
download | qemu-d1abf3fc6abc01fd5f8985af92726f87b5efd80a.tar.gz qemu-d1abf3fc6abc01fd5f8985af92726f87b5efd80a.tar.xz qemu-d1abf3fc6abc01fd5f8985af92726f87b5efd80a.zip |
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>
Diffstat (limited to 'configure')
-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 |