< prev index next >

src/java.base/windows/native/libjli/cmdtoargs.c

Print this page

        

@@ -244,11 +244,11 @@
     *arg = '\0';
 
     // iterate through rest of command line
     while (src != NULL) {
         src = next_arg(src, arg, &wildcard);
-        argsInFile = JLI_PreprocessArg(arg);
+        argsInFile = JLI_PreprocessArg(arg, JNI_TRUE);
         if (argsInFile != NULL) {
             // resize to accommodate another Arg
             cnt = argsInFile->size;
             argv = (StdArg*) JLI_MemRealloc(argv, (nargs + cnt) * sizeof(StdArg));
             for (i = 0; i < cnt; i++) {
< prev index next >