1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-31 10:46:16 +00:00

Bump PORTREVISION after r464084.

While here, add a patch for multimedia/avidemux-plugins to fix the build with gcc7.

Reviewed by:	gerald
This commit is contained in:
Barbara Guida 2018-07-31 23:22:41 +00:00
parent 683364cf68
commit 4b47f579be
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=476028
3 changed files with 13 additions and 2 deletions

View File

@ -2,7 +2,7 @@
PORTNAME= avidemux
PORTVERSION= ${AVIDEMUX_VERSION}
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= multimedia
PKGNAMESUFFIX= -cli

View File

@ -3,7 +3,7 @@
PORTNAME= avidemux
PORTVERSION= ${AVIDEMUX_VERSION}
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= multimedia
PKGNAMESUFFIX= -plugins

View File

@ -0,0 +1,11 @@
--- avidemux_plugins/ADM_muxers/muxerMp4v2/libmp4v2/src/rtphint.cpp.orig 2016-01-29 09:47:25.000000000 +0100
+++ avidemux_plugins/ADM_muxers/muxerMp4v2/libmp4v2/src/rtphint.cpp 2018-07-30 08:44:59.947567000 +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);