mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 08:35:20 +02:00
Plug two minor Leaks (#5603)
* Resource leak: CHECK_FILE_ERR returns, without freeing chunk_name. Found with static analysis. * Resource leak: leaks `page` on error path. Found with static analysis.
This commit is contained in:
@@ -406,7 +406,14 @@ bool ScriptApiSecurity::safeLoadFile(lua_State *L, const char *path)
|
||||
|
||||
// Read the file
|
||||
int ret = std::fseek(fp, 0, SEEK_END);
|
||||
CHECK_FILE_ERR(ret, fp);
|
||||
if (ret) {
|
||||
lua_pushfstring(L, "%s: %s", path, strerror(errno));
|
||||
std::fclose(fp);
|
||||
if (path) {
|
||||
delete [] chunk_name;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
size_t size = std::ftell(fp) - start;
|
||||
char *code = new char[size];
|
||||
|
Reference in New Issue
Block a user