This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A patch for malloc typo


The order of parameters passed to mEMALIGn in memalign_hook_ini is
wrong. Here is a patch.

-- 
H.J. Lu (hjl@gnu.org)
---
2000-09-19  H.J. Lu  <hjl@gnu.org>

	* malloc/malloc.c (memalign_hook_ini): Fix the mEMALIGn call.

Index: malloc/malloc.c
===================================================================
RCS file: /work/cvs/gnu/glibc/malloc/malloc.c,v
retrieving revision 1.1.1.9
diff -u -p -r1.1.1.9 malloc.c
--- malloc/malloc.c	2000/08/31 16:48:37	1.1.1.9
+++ malloc/malloc.c	2000/09/19 18:50:18
@@ -1780,7 +1780,7 @@ memalign_hook_ini(sz, alignment, caller)
 {
   __memalign_hook = NULL;
   ptmalloc_init();
-  return mEMALIGn(sz, alignment);
+  return mEMALIGn(alignment, sz);
 }
 
 void weak_variable (*__malloc_initialize_hook) __MALLOC_P ((void)) = NULL;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]