diff options
author | John Stebbins <[email protected]> | 2015-11-15 16:07:13 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2015-11-15 16:07:13 -0800 |
commit | 7cdced99fcfbb1ac72ce22420e24b2902b3f8ea6 (patch) | |
tree | 32f09b0453ee364768fbbc98261c281eb532293d /libhb/common.c | |
parent | b81fe227ab7f6e422c0558d348c4b360e1a1ef74 (diff) |
libhb: add some NULL checks
Diffstat (limited to 'libhb/common.c')
-rw-r--r-- | libhb/common.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/common.c b/libhb/common.c index 43c4d7601..044e75109 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -2843,6 +2843,7 @@ void hb_buffer_list_close(hb_buffer_list_t *list) int hb_buffer_list_count(hb_buffer_list_t *list) { + if (list == NULL) return 0; return list->count; } @@ -2894,6 +2895,7 @@ hb_list_t * hb_list_init() *********************************************************************/ int hb_list_count( const hb_list_t * l ) { + if (l == NULL) return 0; return l->items_count; } @@ -3120,7 +3122,9 @@ void hb_list_close( hb_list_t ** _l ) hb_list_t * l = *_l; if (l == NULL) + { return; + } free( l->items ); free( l ); |