From 5c537bd62731d5d3b6f42a27a64ada01e071b11f Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Tue, 18 Jul 2017 09:51:16 -0400 Subject: [PATCH] validate: monitor: Add missing break; statement Fixes CID 1415500 --- validate/gst/validate/gst-validate-monitor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/validate/gst/validate/gst-validate-monitor.c b/validate/gst/validate/gst-validate-monitor.c index 04ff66db15..22e0e4b7a1 100644 --- a/validate/gst/validate/gst-validate-monitor.c +++ b/validate/gst/validate/gst-validate-monitor.c @@ -404,6 +404,7 @@ gst_validate_monitor_set_property (GObject * object, guint prop_id, } case PROP_PIPELINE: g_weak_ref_init (&monitor->pipeline, g_value_get_object (value)); + break; case PROP_RUNNER: gst_validate_reporter_set_runner (GST_VALIDATE_REPORTER (monitor), g_value_get_object (value));