Also change

VECTOR* zwei = nullvector;
VECTOR* temp = nullvector;

to

VECTOR zwei;
VECTOR temp;

You don't really want to modify the nullvector, huh?