[vlc-commits] bits: cosmetics
Felix Paul Kühne
git at videolan.org
Thu Jun 25 17:23:57 CEST 2015
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Thu Jun 25 17:22:40 2015 +0200| [098cd03c013121135898f63dc8939c6e2b751677] | committer: Felix Paul Kühne
bits: cosmetics
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=098cd03c013121135898f63dc8939c6e2b751677
---
include/vlc_bits.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/vlc_bits.h b/include/vlc_bits.h
index aa2f76f..aaf5c13 100644
--- a/include/vlc_bits.h
+++ b/include/vlc_bits.h
@@ -208,7 +208,7 @@ static inline void bs_align_1( bs_t *s )
static inline bool bo_init(bo_t *p_bo, int i_size)
{
p_bo->b = block_Alloc(i_size);
- if (!p_bo->b)
+ if (p_bo->b == NULL)
return false;
p_bo->b->i_buffer = 0;
More information about the vlc-commits
mailing list