summaryrefslogtreecommitdiffstats
path: root/apps/plugins/doom/z_zone.c
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-04-03 22:57:39 +0000
committerDave Chapman <dave@dchapman.com>2006-04-03 22:57:39 +0000
commite59a0505095a8f57ba4f8e2551024c276e9475e8 (patch)
tree2e1d66516b2bd1564c1691aa4cc4c59dd22bec8f /apps/plugins/doom/z_zone.c
parent8c177221b31d9b86aa286092ede463a1c5f0a4b4 (diff)
downloadrockbox-e59a0505095a8f57ba4f8e2551024c276e9475e8.tar.gz
rockbox-e59a0505095a8f57ba4f8e2551024c276e9475e8.zip
Workaround for Rockbox's broken memset on ARM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9476 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom/z_zone.c')
-rw-r--r--apps/plugins/doom/z_zone.c22
1 files changed, 19 insertions, 3 deletions
diff --git a/apps/plugins/doom/z_zone.c b/apps/plugins/doom/z_zone.c
index ed3a6918d9..cc3d11abc4 100644
--- a/apps/plugins/doom/z_zone.c
+++ b/apps/plugins/doom/z_zone.c
@@ -630,9 +630,25 @@ void *(Z_Calloc)(size_t n1, size_t n2, int tag, void **user
, const char *file, int line
#endif
)
-{
- return
- (n1*=n2) ? memset((Z_Malloc)(n1, tag, user DA(file, line)), 0, n1) : NULL;
+{ void* s;
+
+ /* The ARM version of memset doesn't correctly return a pointer
+ to the memory address being set, so we have to do this the long
+ way... Revert this when the ARM memset is fixed.
+
+ */
+
+#if 1
+ if (n1*=n2) {
+ s = (Z_Malloc)(n1,tag,user DA(file,line));
+ memset(s, 0, n1);
+ return s;
+ } else {
+ return NULL;
+ }
+#else
+ return (n1*=n2) ? memset((Z_Malloc)(n1, tag, user DA(file, line)), 0, n1) : NULL;
+#endif
}
char *(Z_Strdup)(const char *s, int tag, void **user