mirror of
				https://github.com/GrapheneOS/hardened_malloc.git
				synced 2025-10-31 03:38:55 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			352 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			352 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <stdlib.h>
 | |
| 
 | |
| #include "test_util.h"
 | |
| #include "../util.h"
 | |
| 
 | |
| OPTNONE int main(void) {
 | |
|     char *p = malloc(128);
 | |
|     if (!p) {
 | |
|         return 1;
 | |
|     }
 | |
|     free(p);
 | |
|     UNUSED char *q = malloc(128);
 | |
| 
 | |
|     p[65] = 'a';
 | |
| 
 | |
|     // trigger reuse of the allocation
 | |
|     for (size_t i = 0; i < 100000; i++) {
 | |
|         free(malloc(128));
 | |
|     }
 | |
|     return 0;
 | |
| }
 | 
