[FFmpeg-devel] [PATCH 1/2] avformat/dashdec: Fix missing NULL check

Steven Liu lingjiujianke at gmail.com
Tue Jan 26 03:22:09 EET 2021


sfan5 <sfan5 at live.de> 于2021年1月25日周一 下午11:25写道:
>
> ---
>   libavformat/dashdec.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c
> index 693fc7372b..dc56e89f11 100644
> --- a/libavformat/dashdec.c
> +++ b/libavformat/dashdec.c
> @@ -161,7 +161,7 @@ typedef struct DASHContext {
>   static int ishttp(char *url)
>   {
>       const char *proto_name = avio_find_protocol_name(url);
> -    return av_strstart(proto_name, "http", NULL);
> +    return proto_name && av_strstart(proto_name, "http", NULL);
>   }
>    static int aligned(int val)
> --
> 2.30.0
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".

LGTM

Thanks
Steven


More information about the ffmpeg-devel mailing list