mirror of
				https://github.com/GrapheneOS/hardened_malloc.git
				synced 2025-11-04 09:46:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			244 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			244 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <stdlib.h>
 | 
						|
 | 
						|
#include "test_util.h"
 | 
						|
 | 
						|
size_t malloc_object_size(void *ptr);
 | 
						|
 | 
						|
OPTNONE int main(void) {
 | 
						|
    char *p = malloc(16);
 | 
						|
    if (!p) {
 | 
						|
        return 1;
 | 
						|
    }
 | 
						|
    char *q = p + 4096 * 4;
 | 
						|
    malloc_object_size(q);
 | 
						|
    return 0;
 | 
						|
}
 |