From 0726982cdb974dc026aebafb2db510283a166201 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 17 Jan 2007 20:06:38 +0000 Subject: better to set things to NULL instead of random in case of out of mem Originally committed as revision 7572 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/fifo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil/fifo.c') diff --git a/libavutil/fifo.c b/libavutil/fifo.c index 48cd777c62..276eeb7463 100644 --- a/libavutil/fifo.c +++ b/libavutil/fifo.c @@ -24,11 +24,11 @@ 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; } -- cgit v1.2.3