From 7ce820efa09a3281e55e1ff694b14c2291ec6087 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Fri, 16 Jan 2009 15:30:52 +0000 Subject: Replace nonsense -1234 return value in dyn_buf_write by proper AVERROR(ENOMEM) Originally committed as revision 16633 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/aviobuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat') diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index aa6ad87dec..15328d3fbe 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -740,7 +740,7 @@ static int dyn_buf_write(void *opaque, uint8_t *buf, int buf_size) if (new_allocated_size > d->allocated_size) { d->buffer = av_realloc(d->buffer, new_allocated_size); if(d->buffer == NULL) - return -1234; + return AVERROR(ENOMEM); d->allocated_size = new_allocated_size; } memcpy(d->buffer + d->pos, buf, buf_size); -- cgit v1.2.3