mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
gst/rtsp/rtspurl.c: Fix parsing of password field in url. Fixes #407797.
Original commit message from CVS: Patch by: jp.liu <jp_liu at astrocom dot cn> * gst/rtsp/rtspurl.c: (rtsp_url_parse): Fix parsing of password field in url. Fixes #407797.
This commit is contained in:
parent
2644d7178b
commit
a8f72c67d1
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2007-02-14 Wim Taymans,,, <wim@fluendo.com>
|
||||||
|
|
||||||
|
Patch by: jp.liu <jp_liu at astrocom dot cn>
|
||||||
|
|
||||||
|
* gst/rtsp/rtspurl.c: (rtsp_url_parse):
|
||||||
|
Fix parsing of password field in url. Fixes #407797.
|
||||||
|
|
||||||
2007-02-14 Wim Taymans,,, <wim@fluendo.com>
|
2007-02-14 Wim Taymans,,, <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
|
* gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
|
||||||
|
|
|
@ -95,7 +95,7 @@ rtsp_url_parse (const gchar * urlstr, RTSPUrl ** url)
|
||||||
|
|
||||||
res->user = g_strndup (p, col - p);
|
res->user = g_strndup (p, col - p);
|
||||||
col++;
|
col++;
|
||||||
res->passwd = g_strndup (col, col - at);
|
res->passwd = g_strndup (col, at - col);
|
||||||
|
|
||||||
/* move to host */
|
/* move to host */
|
||||||
p = at + 1;
|
p = at + 1;
|
||||||
|
|
Loading…
Reference in a new issue