From 4d6e92abc359324c219bb26bae97d90af70142aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Sat, 20 May 2017 19:34:56 +0200 Subject: [PATCH] libmp4v2: fix gcc7 build --- srcpkgs/libmp4v2/patches/gcc7-fix-char_ptr.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 srcpkgs/libmp4v2/patches/gcc7-fix-char_ptr.patch diff --git a/srcpkgs/libmp4v2/patches/gcc7-fix-char_ptr.patch b/srcpkgs/libmp4v2/patches/gcc7-fix-char_ptr.patch new file mode 100644 index 00000000000..4428386c516 --- /dev/null +++ b/srcpkgs/libmp4v2/patches/gcc7-fix-char_ptr.patch @@ -0,0 +1,11 @@ +--- src/rtphint.cpp 2012-05-21 00:11:53.000000000 +0200 ++++ src/rtphint.cpp 2017-05-20 19:33:12.524731466 +0200 +@@ -339,7 +339,7 @@ + pSlash = strchr(pSlash, '/'); + if (pSlash != NULL) { + pSlash++; +- if (pSlash != '\0') { ++ if (*pSlash != '\0') { + length = (uint32_t)strlen(pRtpMap) - (pSlash - pRtpMap); + *ppEncodingParams = (char *)MP4Calloc(length + 1); + strncpy(*ppEncodingParams, pSlash, length);