diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2022-02-22 20:12:28 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2022-02-22 20:12:28 +0200 |
commit | 80de2f7c9bc519fb820033a530e1657977117a33 (patch) | |
tree | e0b8b01efe8040cdb7b5039d17aa93a85bc0b442 /ext.c | |
parent | 938afb4d7acb9974d5789dfe4e322c0ccce0541e (diff) | |
download | egawk-80de2f7c9bc519fb820033a530e1657977117a33.tar.gz egawk-80de2f7c9bc519fb820033a530e1657977117a33.tar.bz2 egawk-80de2f7c9bc519fb820033a530e1657977117a33.zip |
Fix resource links found by Coverity.
Diffstat (limited to 'ext.c')
-rw-r--r-- | ext.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -128,6 +128,7 @@ make_builtin(const char *name_space, const awk_ext_func_t *funcinfo) /* multiple extension() calls etc. */ if (do_lint) lintwarn(_("make_builtin: function `%s' already defined"), name); + free(install_name); return awk_false; } else /* variable name etc. */ |