projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0a9848
)
rtsp: Remove an unused variable.
author
Peter Kjellerstedt
<pkj@axis.com>
Fri, 5 Jun 2009 12:05:54 +0000
(14:05 +0200)
committer
Peter Kjellerstedt
<pkj@axis.com>
Fri, 5 Jun 2009 12:05:54 +0000
(14:05 +0200)
gst-libs/gst/rtsp/gstrtspconnection.c
patch
|
blob
|
history
diff --git
a/gst-libs/gst/rtsp/gstrtspconnection.c
b/gst-libs/gst/rtsp/gstrtspconnection.c
index
cce145e
..
fbbb709
100644
(file)
--- a/
gst-libs/gst/rtsp/gstrtspconnection.c
+++ b/
gst-libs/gst/rtsp/gstrtspconnection.c
@@
-2993,7
+2993,6
@@
queue_response (GstRTSPWatch * watch, GString * str, guint cseq)
guint
gst_rtsp_watch_queue_message (GstRTSPWatch * watch, GstRTSPMessage * message)
{
- GstRTSPRec *data;
gchar *header;
guint cseq;
@@
-3010,7
+3009,7
@@
gst_rtsp_watch_queue_message (GstRTSPWatch * watch, GstRTSPMessage * message)
}
/* make a record with the message as a string and cseq */
-
data =
queue_response (watch, message_to_string (watch->conn, message), cseq);
+ queue_response (watch, message_to_string (watch->conn, message), cseq);
return cseq;
}