diff options
author | Stefan Bucur <stefan@stefan-mac.(none)> | 2009-07-03 23:29:23 +0300 |
---|---|---|
committer | Stefan Bucur <stefan@stefan-mac.(none)> | 2009-07-03 23:29:23 +0300 |
commit | c9d910a68845661946d1e040faaa4f46076fd64f (patch) | |
tree | 3ddbe48b4c7e17dbe91ec22ce9ccbc1bd467e8a0 /com32/lib/malloc.c | |
parent | 1ed097522de8d624905efc180e2324acb485e809 (diff) | |
download | syslinux-elf-c9d910a68845661946d1e040faaa4f46076fd64f.tar.gz syslinux-elf-c9d910a68845661946d1e040faaa4f46076fd64f.tar.xz syslinux-elf-c9d910a68845661946d1e040faaa4f46076fd64f.zip |
Fixed a merge issue with the previous commit
Diffstat (limited to 'com32/lib/malloc.c')
-rw-r--r-- | com32/lib/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/lib/malloc.c b/com32/lib/malloc.c index 4b113221..ff6e5b9e 100644 --- a/com32/lib/malloc.c +++ b/com32/lib/malloc.c @@ -64,7 +64,7 @@ static int consider_memory_area(void *dummy, addr_t start, if (len >= 2 * sizeof(struct arena_header)) { fp = (struct free_arena_header *)start; - fp->a.size = len; + ARENA_SIZE_SET(fp->a.attrs, len); __inject_free_block(fp); } } |