Re: [FFmpeg-devel] [PATCH] avformat/dashdec: check NULL pointer of av_strtok

2024-12-27 Thread Leo Izen
On 12/27/24 9:15 AM, Steven Liu wrote: Leo Izen 于2024年12月27日周五 21:29写道: Hi Leo, On 12/26/24 6:37 PM, Steven Liu wrote: fix CID: 1637073 there maybe have NULL pointer return by av_strtok, and should be checked before strtoll it. Signed-off-by: Steven Liu --- libavformat/dashdec.c | 2 ++

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: check NULL pointer of av_strtok

2024-12-27 Thread Steven Liu
Leo Izen 于2024年12月27日周五 21:29写道: Hi Leo, > > On 12/26/24 6:37 PM, Steven Liu wrote: > > fix CID: 1637073 > > there maybe have NULL pointer return by av_strtok, and should be checked > > before > > strtoll it. > > > > Signed-off-by: Steven Liu > > --- > > libavformat/dashdec.c | 2 ++ > > 1 fi

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: check NULL pointer of av_strtok

2024-12-27 Thread Leo Izen
On 12/26/24 6:37 PM, Steven Liu wrote: fix CID: 1637073 there maybe have NULL pointer return by av_strtok, and should be checked before strtoll it. Signed-off-by: Steven Liu --- libavformat/dashdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/dashdec.c b/libavformat/da

[FFmpeg-devel] [PATCH] avformat/dashdec: check NULL pointer of av_strtok

2024-12-26 Thread Steven Liu
fix CID: 1637073 there maybe have NULL pointer return by av_strtok, and should be checked before strtoll it. Signed-off-by: Steven Liu --- libavformat/dashdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index 8107280444..043cd52232 100644