diff mbox

[v2,16/30] tests: fix eepro100-test leak

Message ID 20170221141451.28305-17-marcandre.lureau@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Marc-André Lureau Feb. 21, 2017, 2:14 p.m. UTC
Spotted by ASAN.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 tests/eepro100-test.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Stefan Weil Feb. 21, 2017, 2:42 p.m. UTC | #1
Am 21.02.2017 um 15:14 schrieb Marc-André Lureau:
> Spotted by ASAN.
> 
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
>  tests/eepro100-test.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/tests/eepro100-test.c b/tests/eepro100-test.c
> index ed23258b0f..bdc8a67d57 100644
> --- a/tests/eepro100-test.c
> +++ b/tests/eepro100-test.c
> @@ -54,6 +54,7 @@ int main(int argc, char **argv)
>  
>          path = g_strdup_printf("eepro100/%s", models[i]);
>          qtest_add_data_func(path, models[i], test_device);
> +        g_free(path);
>      }
>  
>      return g_test_run();
> 

Reviewed-by: Stefan Weil <sw@weilnetz.de>
diff mbox

Patch

diff --git a/tests/eepro100-test.c b/tests/eepro100-test.c
index ed23258b0f..bdc8a67d57 100644
--- a/tests/eepro100-test.c
+++ b/tests/eepro100-test.c
@@ -54,6 +54,7 @@  int main(int argc, char **argv)
 
         path = g_strdup_printf("eepro100/%s", models[i]);
         qtest_add_data_func(path, models[i], test_device);
+        g_free(path);
     }
 
     return g_test_run();