qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 1/2] logging: Fixes memory leak in test-logging.c


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH 1/2] logging: Fixes memory leak in test-logging.c
Date: Tue, 8 Sep 2020 14:22:23 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0

On 9/8/20 2:10 PM, Yonggang Luo wrote:
> g_dir_make_tmp Returns the actual name used. This string should be freed with 
> g_free() when not needed any longer
>  and is is in the GLib file name encoding. In case of errors, NULL is 
> returned and error will be set.
> Use g_autofree to free it properly

Please limit your lines to 80 chars, see CODING_STYLE.rst:

  Line width
  ==========

  Lines should be 80 characters; try not to make them longer.

Also it is recommended to limit commit description to
72 chars. With that addressed:

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

(and please keep the reviewers tags when you repost the
same patch, this way we don't have to review your patches
twice).

> 
> Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
> ---
>  tests/test-logging.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tests/test-logging.c b/tests/test-logging.c
> index 8a1161de1d..957f6c08cd 100644
> --- a/tests/test-logging.c
> +++ b/tests/test-logging.c
> @@ -196,7 +196,7 @@ static void rmdir_full(gchar const *root)
>  
>  int main(int argc, char **argv)
>  {
> -    gchar *tmp_path = g_dir_make_tmp("qemu-test-logging.XXXXXX", NULL);
> +    g_autofree gchar *tmp_path = g_dir_make_tmp("qemu-test-logging.XXXXXX", 
> NULL);
>      int rc;
>  
>      g_test_init(&argc, &argv, NULL);
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]