Review custom allocators
This commit is contained in:
parent
fe0d04c879
commit
bec467705e
4 changed files with 10 additions and 4 deletions
|
@ -1431,7 +1431,7 @@ char *TextToUtf8(int *codepoints, int length)
|
|||
}
|
||||
|
||||
// Resize memory to text length + string NULL terminator
|
||||
text = realloc(text, size + 1);
|
||||
text = RL_REALLOC(text, size + 1);
|
||||
|
||||
return text;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue