diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-04-25 10:07:12 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-04-25 10:07:12 +0000 |
commit | a7531984c36cee76a008d24c77cf48b048fcd5a3 (patch) | |
tree | 646eaf1c349e91759abd514821291d3edf57ab0b /gst | |
parent | 24c5812d65e45f630edd172ce493ab9fac6df887 (diff) |
gst/rtsp/rtspconnection.c: Read the channel byte as an unsigned byte.
Original commit message from CVS:
* gst/rtsp/rtspconnection.c: (rtsp_connection_receive):
Read the channel byte as an unsigned byte.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/rtsp/rtspconnection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtsp/rtspconnection.c b/gst/rtsp/rtspconnection.c index b3dfba65..e921a346 100644 --- a/gst/rtsp/rtspconnection.c +++ b/gst/rtsp/rtspconnection.c @@ -683,7 +683,7 @@ rtsp_connection_receive (RTSPConnection * conn, RTSPMessage * msg) res = RTSP_OK; /* parse first line and headers */ while (res == RTSP_OK) { - gchar c; + guint8 c; /* read first character, this identifies data messages */ RTSP_CHECK (rtsp_connection_read (conn, &c, 1), read_error); |