diff options
author | Rodeo <[email protected]> | 2014-01-07 11:41:35 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2014-01-07 11:41:35 +0000 |
commit | 5bf5ef4f102648396941e4a1d1ce4af36638d16b (patch) | |
tree | 5c6a30cf198e846c5893597e701417c74ea708af /libhb/ports.c | |
parent | 78d3ce52294d199cbf6f45d2372c2622589efaa7 (diff) |
parsecsv: always check result of malloc()
RebiewBoard #670.
Patch by icchan. Thanks!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5957 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/ports.c')
-rw-r--r-- | libhb/ports.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/ports.c b/libhb/ports.c index 5b69f16d1..794c8a7f0 100644 --- a/libhb/ports.c +++ b/libhb/ports.c @@ -58,6 +58,7 @@ #include <time.h> #include <sys/time.h> +#include <ctype.h> #if defined( SYS_LINUX ) #include <linux/cdrom.h> |