void-packages/srcpkgs/kodi/patches/fortify-source-fix.patch
Đoàn Trần Công Danh 68add700ba kodi: patch patches context
2022-01-12 19:23:30 +07:00

13 lines
699 B
Diff

Index: xbmc-19.0-Matrix/xbmc/cores/DllLoader/exports/wrapper.c
===================================================================
--- xbmc-19.0-Matrix.orig/xbmc/cores/DllLoader/exports/wrapper.c
+++ xbmc-19.0-Matrix/xbmc/cores/DllLoader/exports/wrapper.c
@@ -449,7 +449,7 @@ struct mntent *__wrap_getmntent(FILE *fp
// are actually #defines which are inlined when compiled with -O. Those defines
// actually call __*chk (for example, __fread_chk). We need to bypass this whole
// thing to actually call our wrapped functions.
-#if _FORTIFY_SOURCE > 1
+#if defined(__GLIBC__) && _FORTIFY_SOURCE > 1
size_t __wrap___fread_chk(void * ptr, size_t ptrlen, size_t size, size_t n, FILE * stream)
{