libmp4v2: fix gcc7 build

This commit is contained in:
Jürgen Buchmüller 2017-05-20 19:34:56 +02:00
parent cb0f33843b
commit 4d6e92abc3

View file

@ -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);