OSDN Git Service

better to set things to NULL instead of random in case of out of mem
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 17 Jan 2007 20:06:38 +0000 (20:06 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 17 Jan 2007 20:06:38 +0000 (20:06 +0000)
Originally committed as revision 7572 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/fifo.c

index 48cd777..276eeb7 100644 (file)
 
 int av_fifo_init(AVFifoBuffer *f, int size)
 {
+    f->wptr = f->rptr =
     f->buffer = av_malloc(size);
     if (!f->buffer)
         return -1;
     f->end = f->buffer + size;
-    f->wptr = f->rptr = f->buffer;
     return 0;
 }