get_bits: remove unused assignment

Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Timothy Gu 2014-07-15 20:56:28 -07:00 committed by Michael Niedermayer
parent aa1d096d02
commit ea6178fff8

View File

@ -408,7 +408,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;
}