From 4b1f5e5090abed6c618c8ba380cd7d28d140f867 Mon Sep 17 00:00:00 2001 From: Gabriel Dume Date: Thu, 14 Aug 2014 16:31:25 -0400 Subject: cosmetics: Write NULL pointer inequality checks more compactly Signed-off-by: Diego Biurrun --- libavcodec/vc1dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/vc1dec.c') diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index 2c7db0be1c..f0ea47134b 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -6114,7 +6114,7 @@ image: goto err; ff_print_debug_info(s, s->current_picture_ptr); *got_frame = 1; - } else if (s->last_picture_ptr != NULL) { + } else if (s->last_picture_ptr) { if ((ret = av_frame_ref(pict, s->last_picture_ptr->f)) < 0) goto err; ff_print_debug_info(s, s->last_picture_ptr); -- cgit v1.2.3