< prev index next >

src/java.base/share/native/launcher/main.c

Print this page

        

*** 181,191 **** } } } // Iterate the rest of command line for (i = 1; i < argc; i++) { ! JLI_List argsInFile = JLI_PreprocessArg(argv[i]); if (NULL == argsInFile) { JLI_List_add(args, JLI_StringDup(argv[i])); } else { int cnt, idx; cnt = argsInFile->size; --- 181,191 ---- } } } // Iterate the rest of command line for (i = 1; i < argc; i++) { ! JLI_List argsInFile = JLI_PreprocessArg(argv[i], JNI_TRUE); if (NULL == argsInFile) { JLI_List_add(args, JLI_StringDup(argv[i])); } else { int cnt, idx; cnt = argsInFile->size;
< prev index next >