]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/idcin.c
rtmpproto: Simplify code for copying data into the output packet
[ffmpeg] / libavformat / idcin.c
index 2536e8bd62c281a6b1cd43d9979ea84e30ce3a8b..3aa0e3ea501de51be5c7eb4a0a3c90c6d9de80e8 100644 (file)
@@ -317,9 +317,9 @@ static int idcin_read_packet(AVFormatContext *s,
 
             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE,
                                           AVPALETTE_SIZE);
-            if (ret < 0) {
+            if (!pal) {
                 av_free_packet(pkt);
-                return ret;
+                return AVERROR(ENOMEM);
             }
             memcpy(pal, palette, AVPALETTE_SIZE);
             pkt->flags |= AV_PKT_FLAG_KEY;