MemoryAllocator 3000

📅 2022-01-23T10:17:37.000Z
👁️ 239 katselukertaa
🔓 Julkinen


#include <stdlib.h>
/* Totally innocent piece of harmless C-code */

int main() 
{
  while(1) {
    malloc(256);
  }
  return 0; /* Totally reachable */
}