1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00
Originally committed as revision 17897 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2009-03-09 03:39:58 +00:00
parent 6b4fab72df
commit c900635fd9

View File

@ -38,8 +38,8 @@ AVFifoBuffer *av_fifo_alloc(unsigned int size)
void av_fifo_free(AVFifoBuffer *f)
{
if(f){
av_free(f->buffer);
av_free(f);
av_free(f->buffer);
av_free(f);
}
}