mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-02 03:58:11 +00:00
fix off-by-one size restriction in string chunk allocation; apply same fixes to ctrl entity string allocator
This commit is contained in:
@@ -1126,7 +1126,7 @@ rd_name_alloc(String8 string)
|
||||
n != 0;
|
||||
prev = n, n = n->next)
|
||||
{
|
||||
if(n->size >= string.size+1)
|
||||
if(n->size >= string.size)
|
||||
{
|
||||
if(prev == 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user