From 4c60f9ef29f8b71564f5d8d109c1b25cb597c86c Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Sat, 18 Apr 2009 18:48:55 +0200 Subject: rtspsrc: Remove dead assignment. t is being overwritten after, before it's used. --- gst/rtsp/gstrtspsrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/rtsp') diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index af69d380..b515417d 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -948,7 +948,7 @@ gst_rtspsrc_parse_rtpmap (const gchar * rtpmap, gint * payload, gchar ** name, { gchar *p, *t; - t = p = (gchar *) rtpmap; + p = (gchar *) rtpmap; PARSE_INT (p, " ", *payload); if (*payload == -1) -- cgit