diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-16 00:41:07 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-16 15:58:40 +0200 |
commit | 0014541e9a2387a37b1a87c22caa36c525a0b478 (patch) | |
tree | a123bba927a7c0685b0741dae6716f0a0e842376 | |
parent | 2d7cec14beb506fe9971d88b3405081bd56f204c (diff) | |
download | ffmpeg-0014541e9a2387a37b1a87c22caa36c525a0b478.tar.gz |
avcodec/dvbsubdec: dont mix integers with pointers
Reviewed-by: James Darnley <james.darnley@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/dvbsubdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dvbsubdec.c b/libavcodec/dvbsubdec.c index a40da768de..4cf5b02989 100644 --- a/libavcodec/dvbsubdec.c +++ b/libavcodec/dvbsubdec.c @@ -888,7 +888,7 @@ static void dvbsub_parse_pixel_data_block(AVCodecContext *avctx, DVBSubObjectDis av_dlog(avctx, "\n"); #endif - if (region == 0) + if (!region) return; pbuf = region->pbuf; @@ -1383,7 +1383,7 @@ static void save_display_set(DVBSubContext *ctx) clut = get_clut(ctx, region->clut); - if (clut == 0) + if (!clut) clut = &default_clut; switch (region->depth) { |