From 351d0f8b7a6ecce411ae75fb3511573c34317218 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Thu, 30 Oct 2014 00:51:51 +0000 Subject: get_bits: remove unused assignment Bug-Id: CID 1238816 --- libavcodec/get_bits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/get_bits.h') diff --git a/libavcodec/get_bits.h b/libavcodec/get_bits.h index b7c68e1b9f..3339c126e6 100644 --- a/libavcodec/get_bits.h +++ b/libavcodec/get_bits.h @@ -380,7 +380,7 @@ static inline int init_get_bits(GetBitContext *s, const uint8_t *buffer, int ret = 0; if (bit_size > INT_MAX - 7 || bit_size < 0 || !buffer) { - buffer_size = bit_size = 0; + bit_size = 0; buffer = NULL; ret = AVERROR_INVALIDDATA; } -- cgit v1.2.3