cmd.exe: GOTO throws away any preloaded multi part/line command.
diff --git a/programs/cmd/batch.c b/programs/cmd/batch.c
index b2a07cb..cc9d835 100644
--- a/programs/cmd/batch.c
+++ b/programs/cmd/batch.c
@@ -97,7 +97,7 @@
   /* If processing a call :label, 'goto' the label in question */
   if (startLabel) {
     strcpyW(param1, startLabel);
-    WCMD_goto();
+    WCMD_goto(NULL);
   }
 
 /*