Browse Source
In a few places `malloc` was being used without checking the return for a `NULL` pointer. There's already a wrapper (`ss_malloc`) in `util.c` that performs this check and exits if it fails so this commit replaces the unsafe `malloc`s with `ss_malloc`s.pull/1620/head
committed by
Max Lv
3 changed files with 3 additions and 3 deletions
Loading…