Commit d24751a7 authored by Felix Paul Kühne's avatar Felix Paul Kühne

vlc_bits: fail on init if block allocation fails

parent 040ac94d
......@@ -205,11 +205,16 @@ static inline void bs_align_1( bs_t *s )
}
}
static inline void bo_init(bo_t *p_bo, int i_size)
static inline int bo_init(bo_t *p_bo, int i_size)
{
p_bo->b = block_Alloc(i_size);
if (!p_bo->b)
return VLC_ENOMEM;
p_bo->b->i_buffer = 0;
p_bo->len = p_bo->basesize = i_size;
return VLC_SUCCESS;
}
static inline void bo_set_8(bo_t *p_bo, size_t i_offset, uint8_t i)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment