We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1107887 commit 8217ad0Copy full SHA for 8217ad0
include/linux/decompress/mm.h
@@ -48,7 +48,7 @@ MALLOC_VISIBLE void *malloc(int size)
48
if (!malloc_ptr)
49
malloc_ptr = free_mem_ptr;
50
51
- malloc_ptr = (malloc_ptr + 3) & ~3; /* Align */
+ malloc_ptr = (malloc_ptr + 7) & ~7; /* Align */
52
53
p = (void *)malloc_ptr;
54
malloc_ptr += size;
0 commit comments