util: fix possible invalid memory write in foz_read_entry
malloc
can return NULL
when the payload size is larger than the free memory available for allocation, and then fread
will cause trouble.
Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
malloc
can return NULL
when the payload size is larger than the free memory available for allocation, and then fread
will cause trouble.