From f27dd9b8f2372d1fbdd1f02ba378fae6d8b5974d Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Mon, 7 Dec 2009 10:16:10 +0100 Subject: [PATCH] fixed memory leak --- test/spawn-test.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/spawn-test.c b/test/spawn-test.c index 991a5e830..68bd33314 100644 --- a/test/spawn-test.c +++ b/test/spawn-test.c @@ -36,6 +36,8 @@ main (int argc, char **argv) fprintf (stderr, "Could not launch application: \"%s\"\n", error.message); } - + + dbus_free(argv_copy); + return 0; } -- 2.47.3