#include<stdlib.h>
int main(){
	char* bytes = malloc(128);
	bytes = malloc(128);
	free(bytes);
}