From dcc0d7dfdc88778169c542ec714094b068d8ff70 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Sun, 26 Sep 2010 12:56:02 +0000 Subject: fiddle with the alloc requested size instead of the buffer pointer to keep the buffer 32bit aligned git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28175 a1c6a512-1295-4272-9138-f99709370657 --- lib/skin_parser/skin_buffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/skin_parser/skin_buffer.c b/lib/skin_parser/skin_buffer.c index 69d9d273bd..ecfe04b167 100644 --- a/lib/skin_parser/skin_buffer.c +++ b/lib/skin_parser/skin_buffer.c @@ -45,12 +45,12 @@ void* skin_buffer_alloc(size_t size) { void *retval = NULL; #ifdef ROCKBOX + /* 32-bit aligned */ + size = (size + 3) & ~3; if (size > skin_buffer_freespace()) return NULL; retval = buffer_front; buffer_front += size; - /* 32-bit aligned */ - buffer_front = (void *)(((unsigned long)buffer_front + 3) & ~3); #else retval = malloc(size); #endif -- cgit v1.2.3