Re: [FFmpeg-devel] [PATCH] libavformat/dashdec.c Fix for ticket #7395

2024-02-02 Thread Pablo Navarro
Shouldn't the result of xmlEncodeEntitiesReentrant(NULL, root_url) be freed with av_free or xmlFree? xmlChar *tmp_str = NULL; tmp_str = xmlEncodeEntitiesReentrant(NULL, root_url); xmlNodeSetContent(node, tmp_str); xmlFree(tmp_str); ___ ffmpeg-devel maili

Re: [FFmpeg-devel] [PATCH] libavformat/dashdec.c Fix for ticket #7395

2023-12-07 Thread Evgeniy Pantyuhin via ffmpeg-devel
Hello Anton, Thursday, December 7, 2023, 8:32:33 PM, you wrote: >>libavformat/dashdec.c Fix for ticket #7395 > "fix bug" is not a useful commit message DASH demuxing error "unterminated entity reference" due to ampersand in URL Commit 7a63da8 broke the DASH demuxer if the manifest contains a

Re: [FFmpeg-devel] [PATCH] libavformat/dashdec.c Fix for ticket #7395

2023-12-07 Thread Anton Khirnov
>libavformat/dashdec.c Fix for ticket #7395 "fix bug" is not a useful commit message -- Anton Khirnov ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffm

Re: [FFmpeg-devel] [PATCH] libavformat/dashdec.c Fix for ticket #7395

2023-12-06 Thread Steven Liu
Evgeniy Pantyuhin via ffmpeg-devel 于2023年12月7日周四 04:32写道: > > Signed-off-by: Evgeniy > --- > libavformat/dashdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c > index 29d4680..36e4719 100644 > --- a/libavformat/dashdec.c