* Don't allocate 0 bytes of memory. It upsets electricFence!
authorPhilip Gladstone <philipjsg@users.sourceforge.net>
Thu, 9 May 2002 01:24:27 +0000 (01:24 +0000)
committerPhilip Gladstone <philipjsg@users.sourceforge.net>
Thu, 9 May 2002 01:24:27 +0000 (01:24 +0000)
Originally committed as revision 472 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/utils.c

index 441b8f1..0f80b1b 100644 (file)
@@ -71,12 +71,17 @@ int avcodec_open(AVCodecContext *avctx, AVCodec *codec)
 
     avctx->codec = codec;
     avctx->frame_number = 0;
-    avctx->priv_data = av_mallocz(codec->priv_data_size);
-    if (!avctx->priv_data) 
-        return -ENOMEM;
+    if (codec->priv_data_size > 0) {
+        avctx->priv_data = av_mallocz(codec->priv_data_size);
+        if (!avctx->priv_data) 
+            return -ENOMEM;
+    } else {
+        avctx->priv_data = NULL;
+    }
     ret = avctx->codec->init(avctx);
     if (ret < 0) {
-        free(avctx->priv_data);
+        if (avctx->priv_data)
+            free(avctx->priv_data);
         avctx->priv_data = NULL;
         return ret;
     }