rtspsrc: Remove dead assignment.
authorEdward Hervey <bilboed@bilboed.com>
Sat, 18 Apr 2009 16:48:55 +0000 (18:48 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Sat, 18 Apr 2009 16:51:29 +0000 (18:51 +0200)
t is being overwritten after, before it's used.

gst/rtsp/gstrtspsrc.c

index af69d38..b515417 100644 (file)
@@ -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)