fixed stupid bug in buffer_span()

Original commit message from CVS:
fixed stupid bug in buffer_span()
This commit is contained in:
Erik Walthinsen 2001-08-11 22:04:48 +00:00
parent 474a80cb8e
commit c7c1192ab3

View file

@ -403,7 +403,7 @@ gst_buffer_span (GstBuffer *buf1, guint32 offset, GstBuffer *buf2, guint32 len)
// allocate space for the copy
newbuf->data = (guchar *)g_malloc(len);
// copy the first buffer's data across
memcpy(newbuf->data, buffer->data + offset, buf1->size - offset);
memcpy(newbuf->data, buf1->data + offset, buf1->size - offset);
// copy the second buffer's data across
memcpy(newbuf->data + offset, buf2->data, len - (buf1->size - offset));