mirror of
https://github.com/OpenMW/openmw.git
synced 2025-12-12 19:13:07 +00:00
Merge branch 'realloc' into 'master'
Don't assume realloc always succeeds See merge request OpenMW/openmw!4331
This commit is contained in:
commit
830a26f75e
1 changed files with 9 additions and 2 deletions
|
|
@ -101,14 +101,21 @@ namespace LuaUtil
|
||||||
<< " is blocked because Lua memory limit (configurable in settings.cfg) is exceeded";
|
<< " is blocked because Lua memory limit (configurable in settings.cfg) is exceeded";
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
self->mTotalMemoryUsage += smallAllocDelta + bigAllocDelta;
|
|
||||||
self->mSmallAllocMemoryUsage += smallAllocDelta;
|
|
||||||
|
|
||||||
void* newPtr = nullptr;
|
void* newPtr = nullptr;
|
||||||
if (nsize == 0)
|
if (nsize == 0)
|
||||||
free(ptr);
|
free(ptr);
|
||||||
else
|
else
|
||||||
|
{
|
||||||
newPtr = realloc(ptr, nsize);
|
newPtr = realloc(ptr, nsize);
|
||||||
|
if (!newPtr)
|
||||||
|
{
|
||||||
|
Log(Debug::Error) << "Lua realloc " << osize << "->" << nsize << " failed";
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
self->mTotalMemoryUsage += smallAllocDelta + bigAllocDelta;
|
||||||
|
self->mSmallAllocMemoryUsage += smallAllocDelta;
|
||||||
|
|
||||||
if (bigAllocDelta != 0)
|
if (bigAllocDelta != 0)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue