diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2017-05-21 08:28:45 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2017-05-21 13:19:48 +0200 |
commit | 706f452d9ddc180cf2fdaf9814778ee818661ee4 (patch) | |
tree | ef5d99ee89e57925fd93144dfd34034d0df6e480 /ell.c | |
parent | 567c3d8dc28e99278b5db0edf53e93783e835fe9 (diff) | |
download | ell-706f452d9ddc180cf2fdaf9814778ee818661ee4.tar.gz ell-706f452d9ddc180cf2fdaf9814778ee818661ee4.tar.xz ell-706f452d9ddc180cf2fdaf9814778ee818661ee4.zip |
Fix memory leak on evaluation error
Diffstat (limited to 'ell.c')
-rwxr-xr-x | ell.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -853,6 +853,9 @@ execute_statement return true; } + item_free_list (*result); + *result = NULL; + // In that case, `error' is NULL and there's nothing else to do anyway if (!ctx->memory_failure) { // This creates some form of a stack trace |