From: Markus Armbruster Date: Tue, 30 Jun 2020 09:03:35 +0000 (+0200) Subject: test-util-filemonitor: Plug unlikely memory leak X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=05584d12ae0c818665637b7ec580b600920d3027;p=qemu.git test-util-filemonitor: Plug unlikely memory leak test_file_monitor_events() leaks an Error object when qemu_file_monitor_add_watch() fails, which seems unlikely. Plug it. Cc: Daniel P. Berrangé Signed-off-by: Markus Armbruster Message-Id: <20200630090351.1247703-11-armbru@redhat.com> Reviewed-by: Daniel P. Berrangé --- diff --git a/tests/test-util-filemonitor.c b/tests/test-util-filemonitor.c index 45009c69f4..8f0eff3d03 100644 --- a/tests/test-util-filemonitor.c +++ b/tests/test-util-filemonitor.c @@ -495,6 +495,7 @@ test_file_monitor_events(void) if (*op->watchid < 0) { g_printerr("Unable to add watch %s", error_get_pretty(local_err)); + error_free(local_err); goto cleanup; } if (debug) {