mirror of
https://github.com/minetest/minetest.git
synced 2024-11-24 00:23:46 +01:00
Fix a memleak before assertion in l_get_mod_storage
This commit is contained in:
parent
2513886969
commit
d7f873bc8d
@ -37,6 +37,7 @@ int ModApiStorage::l_get_mod_storage(lua_State *L)
|
|||||||
store->load(gamedef->getModStoragePath());
|
store->load(gamedef->getModStoragePath());
|
||||||
gamedef->registerModStorage(store);
|
gamedef->registerModStorage(store);
|
||||||
} else {
|
} else {
|
||||||
|
delete store;
|
||||||
assert(false); // this should not happen
|
assert(false); // this should not happen
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user