summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-04-18 18:48:55 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-04-18 18:51:29 +0200
commit4c60f9ef29f8b71564f5d8d109c1b25cb597c86c (patch)
treea5da4b758450ca25f00f02394bf92e4ba5c8eab6
parent84b6d07c75ca6555743b2fa048464db495bf0289 (diff)
rtspsrc: Remove dead assignment.
t is being overwritten after, before it's used.
-rw-r--r--gst/rtsp/gstrtspsrc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c
index af69d380a..b515417d3 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)