[PING][PATCH] show_archive_content: Fix trivial memory leak
Siddhesh Poyarekar
siddhesh@sourceware.org
Mon May 17 15:59:12 GMT 2021
Ping! I'll push this in a couple of days if there are no objections
since it is a pretty trivial fix.
Siddhesh
On 5/11/21 10:47 PM, Siddhesh Poyarekar via Libc-alpha wrote:
> Fix trivial leak identified by coverity. The program runs to exit and
> the leak doesn't grow, but it's just cleaner to free the allocated
> memory.
> ---
> locale/programs/locarchive.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/locale/programs/locarchive.c b/locale/programs/locarchive.c
> index 6bb189ae37..f38e835c52 100644
> --- a/locale/programs/locarchive.c
> +++ b/locale/programs/locarchive.c
> @@ -1742,6 +1742,7 @@ show_archive_content (const char *fname, int verbose)
> : locnames[idx]);
> }
> }
> + free (files);
> }
> else
> for (cnt = 0; cnt < used; ++cnt)
>
More information about the Libc-alpha
mailing list