Stefan Beller <sbel...@google.com> writes:

> Signed-off-by: Stefan Beller <sbel...@google.com>
> ---
>  sequencer.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/sequencer.c b/sequencer.c
> index b98690ecd41..aba03e9429a 100644
> --- a/sequencer.c
> +++ b/sequencer.c
> @@ -175,6 +175,7 @@ static int git_sequencer_config(const char *k, const char 
> *v, void *cb)
>                       warning(_("invalid commit message cleanup mode '%s'"),
>                                 s);
>  
> +             free(s);
>               return status;
>       }

Shouldn't 's' now lose 'const'?  After all, git_config_string()
gives you an allocated memory so...

Reply via email to