Index: /lang/c/NetworkUpdater/trunk/Build/Common.c
===================================================================
--- /lang/c/NetworkUpdater/trunk/Build/Common.c (revision 38186)
+++ /lang/c/NetworkUpdater/trunk/Build/Common.c (revision 38242)
@@ -2,4 +2,6 @@
 #  include "Common.h"
 #endif
+
+#include <malloc.h>
 
 int NUI_IsBadReadWritePointer(void* pointer, size_t bytes) {
@@ -96,7 +98,22 @@
 
 int NU_Create(NU_NetworkUpdater* object, const NU_Option* option) {
+    void* stack;
+    void* heap;
+
     if (NUI_IsBadReadWritePointer(object, sizeof(*object))) {
         return 0;
     }
+
+    stack = alloca(0x10);
+    stack = alloca(0x10);
+    stack = alloca(0x10);
+    stack = alloca(0x10);
+    stack = alloca(0x10);
+    
+    heap = malloc(0x10);
+    heap = malloc(0x10);
+    heap = malloc(0x10);
+    heap = malloc(0x10);
+    heap = malloc(0x10);
 
     memset(object, 0, sizeof(*object));
