fixed rather heinous bug in gst_buffer_copy

Original commit message from CVS:
fixed rather heinous bug in gst_buffer_copy
This commit is contained in:
Erik Walthinsen 2001-05-25 21:35:58 +00:00
parent b845ee86f8
commit 28437bf3e2

View file

@ -450,7 +450,7 @@ gst_buffer_copy (GstBuffer *buffer)
// allocate space for the copy
newbuf->data = (guchar *)g_malloc (buffer->size);
// copy the data straight across
memcpy(newbuf,buffer->data,buffer->size);
memcpy(newbuf->data,buffer->data,buffer->size);
// the new maxsize is the same as the size, since we just malloc'd it
newbuf->maxsize = newbuf->size;
}