summaryrefslogtreecommitdiffstats
path: root/thirdparty/minimp3/minimp3_ex.h
diff options
context:
space:
mode:
authorVincent <vinsteimes@gmail.com>2021-11-30 18:02:42 +0100
committerVincent <vinsteimes@gmail.com>2021-12-01 14:30:38 +0100
commit2d0068d1cb658d6b600fdc3f9ae02fe56338297c (patch)
tree3ff71c7e6c3d9c540b9a74a801f63a620dd2d326 /thirdparty/minimp3/minimp3_ex.h
parent56f73a7e294972ddabbada46fc75f3f7ef8ca36f (diff)
downloadredot-engine-2d0068d1cb658d6b600fdc3f9ae02fe56338297c.tar.gz
Fix crash when loading an invalid mp3 file
Diffstat (limited to 'thirdparty/minimp3/minimp3_ex.h')
-rw-r--r--thirdparty/minimp3/minimp3_ex.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/thirdparty/minimp3/minimp3_ex.h b/thirdparty/minimp3/minimp3_ex.h
index e29dd15b2e..2871705df3 100644
--- a/thirdparty/minimp3/minimp3_ex.h
+++ b/thirdparty/minimp3/minimp3_ex.h
@@ -6,6 +6,7 @@
This software is distributed without any warranty.
See <http://creativecommons.org/publicdomain/zero/1.0/>.
*/
+#include <stddef.h>
#include "minimp3.h"
/* flags for mp3dec_ex_open_* functions */
@@ -128,8 +129,10 @@ int mp3dec_ex_open_w(mp3dec_ex_t *dec, const wchar_t *file_name, int flags);
#endif
#endif /*MINIMP3_EXT_H*/
-#ifdef MINIMP3_IMPLEMENTATION
+#if defined(MINIMP3_IMPLEMENTATION) && !defined(_MINIMP3_EX_IMPLEMENTATION_GUARD)
+#define _MINIMP3_EX_IMPLEMENTATION_GUARD
#include <limits.h>
+#include "minimp3.h"
static void mp3dec_skip_id3v1(const uint8_t *buf, size_t *pbuf_size)
{
@@ -1391,4 +1394,4 @@ void mp3dec_ex_close(mp3dec_ex_t *dec)
}
#endif
-#endif /*MINIMP3_IMPLEMENTATION*/
+#endif /* MINIMP3_IMPLEMENTATION && !_MINIMP3_EX_IMPLEMENTATION_GUARD */