From c7c1192ab3b1e4d6cfb37f8ba456d03d8780acf5 Mon Sep 17 00:00:00 2001 From: Erik Walthinsen Date: Sat, 11 Aug 2001 22:04:48 +0000 Subject: [PATCH] fixed stupid bug in buffer_span() Original commit message from CVS: fixed stupid bug in buffer_span() --- gst/gstbuffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstbuffer.c b/gst/gstbuffer.c index d1f943dab0..4e889b6101 100644 --- a/gst/gstbuffer.c +++ b/gst/gstbuffer.c @@ -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));