diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2006-09-16 08:13:51 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2006-09-16 08:13:51 +0000 |
commit | a39f83faf5b7c9fa17e9ea60af43599ca54eaa62 (patch) | |
tree | 189a96e7421e4f244877320cbc734c8a42221356 | |
parent | 474c8259a683a8f66e516319942c4714bbe366ae (diff) | |
download | xine-lib-a39f83faf5b7c9fa17e9ea60af43599ca54eaa62.tar.gz xine-lib-a39f83faf5b7c9fa17e9ea60af43599ca54eaa62.tar.bz2 |
Fixed ASF header reading.
CVS patchset: 8263
CVS date: 2006/09/16 08:13:51
-rw-r--r-- | src/input/mms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/mms.c b/src/input/mms.c index fe9ec7532..86317a1ee 100644 --- a/src/input/mms.c +++ b/src/input/mms.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: mms.c,v 1.62 2006/09/12 21:24:21 valtri Exp $ + * $Id: mms.c,v 1.63 2006/09/16 08:13:51 tmattern Exp $ * * MMS over TCP protocol * based on work from major mms @@ -475,7 +475,7 @@ static int get_asf_header (mms_t *this) { return 0; } len = _x_io_tcp_read (this->stream, this->s, - (char*)(this->asf_header + this->asf_header_len), header.packet_len); + (char*)(this->asf_header_buffer + this->asf_header_len), header.packet_len); if (len != header.packet_len) { xprintf(this->stream->xine, XINE_VERBOSITY_LOG, "libmms: get_header failed\n"); |