mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-17 15:21:44 +00:00
Review custom allocators
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user