[alsa-devel] [PATCH 1/3] pcm: ensure amd64-specific asm code is not used on x32
mirabilos
t.glaser at tarent.de
Thu Jan 23 21:17:34 CET 2020
This fixes segfaults on x32 systems.
Signed-off-by: mirabilos <tg at debian.org>
---
src/pcm/pcm_dmix.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pcm/pcm_dmix.c b/src/pcm/pcm_dmix.c
index d533f40c..407f644d 100644
--- a/src/pcm/pcm_dmix.c
+++ b/src/pcm/pcm_dmix.c
@@ -142,7 +142,7 @@ static void dmix_server_free(snd_pcm_direct_t *dmix)
#include "pcm_dmix_generic.c"
#if defined(__i386__)
#include "pcm_dmix_i386.c"
-#elif defined(__x86_64__)
+#elif defined(__x86_64__) && !defined(__ILP32__)
#include "pcm_dmix_x86_64.c"
#else
#ifndef DOC_HIDDEN
--
2.25.0
More information about the Alsa-devel
mailing list