From 817421cb0f87df2ef21dfbad65b84c21da098071 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Fri, 28 Feb 2003 11:49:13 +0000 Subject: [project @ 2003-02-28 11:49:13 by bursa] More status messages, bug fixes. svn path=/import/netsurf/; revision=102 --- riscos/jpeg.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'riscos/jpeg.c') diff --git a/riscos/jpeg.c b/riscos/jpeg.c index 48f43ca8e..f8ef1c7d0 100644 --- a/riscos/jpeg.c +++ b/riscos/jpeg.c @@ -1,5 +1,5 @@ /** - * $Id: jpeg.c,v 1.1 2003/02/25 21:00:27 bursa Exp $ + * $Id: jpeg.c,v 1.2 2003/02/28 11:49:13 bursa Exp $ * * This is just a temporary implementation using the JPEG renderer * available in some versions of RISC OS. @@ -26,6 +26,7 @@ void jpeg_process_data(struct content *c, char *data, unsigned long size) c->data.jpeg.data = xrealloc(c->data.jpeg.data, c->data.jpeg.length + size); memcpy(c->data.jpeg.data + c->data.jpeg.length, data, size); c->data.jpeg.length += size; + c->size += size; } -- cgit v1.2.3