mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
If malloc returns NULL, we need to return NULL immediately or
else Asterisk will crash when attempting to dereference the NULL pointer (closes issue #13858) Reported by: eliel Patches: astmm.c.patch uploaded by eliel (license 64) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@157632 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -114,6 +114,7 @@ static inline void *__ast_alloc_region(size_t size, const enum func_type which,
|
||||
if (!(reg = malloc(size + sizeof(*reg) + sizeof(*fence)))) {
|
||||
astmm_log("Memory Allocation Failure - '%d' bytes in function %s "
|
||||
"at line %d of %s\n", (int) size, func, lineno, file);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
ast_copy_string(reg->file, file, sizeof(reg->file));
|
||||
|
Reference in New Issue
Block a user