> @@ -3120,7 +3121,10 @@ static VideoState *stream_open(const char *filename, > AVInputFormat *iformat) > is = av_mallocz(sizeof(VideoState)); > if (!is) > return NULL; > - av_strlcpy(is->filename, filename, sizeof(is->filename)); > + is->filename = av_malloc(strlen(filename)+1); > + if (!is->filename) > + goto fail; > + strcpy(is->filename, filename);
av_strdup > is->iformat = iformat; > is->ytop = 0; > is->xleft = 0;
signature.asc
Description: OpenPGP digital signature
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel