From 05307c46e734de20a806b642645516c2502dc993 Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Wed, 23 Dec 2009 19:39:05 +0100 Subject: [PATCH] rtph264pay: fix uninitialized variable --- gst/rtp/gstrtph264pay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/rtp/gstrtph264pay.c b/gst/rtp/gstrtph264pay.c index ff25b48939..0ae09ff165 100644 --- a/gst/rtp/gstrtph264pay.c +++ b/gst/rtp/gstrtph264pay.c @@ -623,7 +623,7 @@ static GstFlowReturn gst_rtp_h264_pay_send_sps_pps (GstBaseRTPPayload * basepayload, GstRtpH264Pay * rtph264pay, GstClockTime timestamp) { - GstFlowReturn ret; + GstFlowReturn ret = GST_FLOW_OK; GList *walk; for (walk = rtph264pay->sps; walk; walk = g_list_next (walk)) {