From b500ac31ab67b206815e564009afd7c547c00b45 Mon Sep 17 00:00:00 2001 From: Doug Nazar Date: Sun, 11 Apr 2021 08:23:27 -0400 Subject: [PATCH] tests: Remove invalid buffer test in test_get_allowed_caps. Passing a non-GObject pointer causes SIGSEGV on certain architectures. Part-of: --- tests/check/gst/gstpad.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/check/gst/gstpad.c b/tests/check/gst/gstpad.c index 7ee0fee..3a4ee0d 100644 --- a/tests/check/gst/gstpad.c +++ b/tests/check/gst/gstpad.c @@ -169,15 +169,10 @@ GST_START_TEST (test_get_allowed_caps) { GstPad *src, *sink; GstCaps *caps, *gotcaps; - GstBuffer *buffer; GstPadLinkReturn plr; ASSERT_CRITICAL (gst_pad_get_allowed_caps (NULL)); - buffer = gst_buffer_new (); - ASSERT_CRITICAL (gst_pad_get_allowed_caps ((GstPad *) buffer)); - gst_buffer_unref (buffer); - src = gst_pad_new ("src", GST_PAD_SRC); fail_if (src == NULL); caps = gst_pad_get_allowed_caps (src); -- 2.7.4