1
mirror of https://github.com/mpv-player/mpv synced 2025-01-01 04:36:24 +01:00

memalign segfaults when used without declaration on amd64 (default function return type is int so the pointer was trunctated to 32bits)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17636 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
aurel 2006-02-16 22:43:42 +00:00
parent acf99ed75b
commit 808ce9a03a

View File

@ -18,6 +18,10 @@
#include "libaf/af.h"
#ifdef HAVE_MALLOC_H
#include <malloc.h>
#endif
#ifdef DYNAMIC_PLUGINS
#include <dlfcn.h>
#endif