Index: trunk/ippdb/tests/alloc.c
===================================================================
--- trunk/ippdb/tests/alloc.c	(revision 14169)
+++ trunk/ippdb/tests/alloc.c	(revision 14252)
@@ -1100,5 +1100,5 @@
         diffInputSkyfileRow *object;
 
-        object = diffInputSkyfileRowAlloc(-64, -64, "a string", "a string", "a string", true    );
+        object = diffInputSkyfileRowAlloc(-64, true, -64, -64, "a string", "a string", "a string"    );
 
         if (!object) {
@@ -1110,4 +1110,12 @@
             exit(EXIT_FAILURE);
         }
+        if (!object->template == true) {
+            psFree(object);
+            exit(EXIT_FAILURE);
+        }
+        if (!object->stack_id == -64) {
+            psFree(object);
+            exit(EXIT_FAILURE);
+        }
         if (!object->warp_id == -64) {
             psFree(object);
@@ -1123,8 +1131,4 @@
         }
         if (strncmp(object->kind, "a string", MAX_STRING_LENGTH)) {
-            psFree(object);
-            exit(EXIT_FAILURE);
-        }
-        if (!object->template == true) {
             psFree(object);
             exit(EXIT_FAILURE);
