Add mouse vertical scrolling.
[familia.git] / src / memory_stack.c
index 9e32862c85c9799d36db0fc249f95770fc4937b7..61493150e1df4a39f0e205c94e5a489d74bfc9dd 100644 (file)
@@ -42,6 +42,8 @@ void familia_memory_stack_init()
 
        assert(memory_stack == NULL);
        memory_stack = (struct familia_memory_stack*)malloc(sizeof(struct familia_memory_stack));
+       memory_stack->objects = NULL;
+       memory_stack->objects_no = 0;
 
        assert(storage != NULL);
 }