From 28437bf3e24afc0900306044082c19dc26333693 Mon Sep 17 00:00:00 2001 From: Erik Walthinsen Date: Fri, 25 May 2001 21:35:58 +0000 Subject: [PATCH] fixed rather heinous bug in gst_buffer_copy Original commit message from CVS: fixed rather heinous bug in gst_buffer_copy --- gst/gstbuffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstbuffer.c b/gst/gstbuffer.c index 7a44084ca6..59ebf44a59 100644 --- a/gst/gstbuffer.c +++ b/gst/gstbuffer.c @@ -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; }