From 52f716e1d2b9d93bebb8a5334c2de55a75f9be64 Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Tue, 19 Mar 2019 12:51:21 +0000 Subject: [PATCH] test-stream-device: Remove interface before next loop We should not reuse the same interface twice as doing so will cause dangling pointers. Unregister it at every iteration. Signed-off-by: Frediano Ziglio Acked-by: Christophe Fergeau --- server/tests/test-stream-device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/server/tests/test-stream-device.c b/server/tests/test-stream-device.c index e63952ac..ce37822f 100644 --- a/server/tests/test-stream-device.c +++ b/server/tests/test-stream-device.c @@ -342,6 +342,7 @@ static void test_stream_device(TestFixture *fixture, gconstpointer user_data) g_assert(message_sizes_curr - message_sizes == 5 || !device_enabled); check_vmc_error_message(); + spice_server_remove_interface(&vmc_instance.base); } }