mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
Added the missing semicolon;
This commit is contained in:
2
library/stdlib_malloc.c
Normal file → Executable file
2
library/stdlib_malloc.c
Normal file → Executable file
@ -141,7 +141,7 @@ __allocate_memory(
|
|||||||
|
|
||||||
if (__addition_overflows(sizeof(*mn) + MALLOC_HEAD_SIZE + MALLOC_TAIL_SIZE, size))
|
if (__addition_overflows(sizeof(*mn) + MALLOC_HEAD_SIZE + MALLOC_TAIL_SIZE, size))
|
||||||
{
|
{
|
||||||
SHOWMSG("integer overflow")
|
SHOWMSG("integer overflow");
|
||||||
|
|
||||||
__set_errno(ENOMEM);
|
__set_errno(ENOMEM);
|
||||||
goto out;
|
goto out;
|
||||||
|
|||||||
Reference in New Issue
Block a user