[Ffmpeg-devel] [PATCH] Incorrect memset in Sierra decoder

Diego Biurrun diego
Wed Aug 9 09:52:55 CEST 2006


On Wed, Aug 09, 2006 at 09:11:30AM +0300, Kostya wrote:
> On Tue, Aug 08, 2006 at 07:29:49PM +0200, Diego Biurrun wrote:
> > On Tue, Aug 08, 2006 at 12:50:16PM +0200, Panagiotis Issaris wrote:
> > > 
> > > A memset in the Sierra VMD audio & video decoder seems to be wrong. The
> > > attached patch fixes this.
> > > 
> > > --- libavcodec/vmdav.c	(revision 5955)
> > > +++ libavcodec/vmdav.c	(working copy)
> > > @@ -92,7 +92,7 @@
> > >      s += 4;
> > > -    memset(queue, QUEUE_SIZE, 0x20);
> > > +    memset(queue, 0x20, QUEUE_SIZE);
> > 
> > Looks correct to me.  Mike, Kostya?  Who's the maintainer of this file?
> 
> Looks like it's not defined in MAINTAINERS either. As for me, apply it.

OK, patch applied.

Diego




More information about the ffmpeg-devel mailing list