We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents afd23c9 + 09f5b16 commit dae2af5Copy full SHA for dae2af5
ompi/tools/mpirun/main.c
@@ -77,6 +77,9 @@ static void append_prefixes(char ***out, const char *in)
77
78
char **tokenized;
79
tokenized = opal_argv_split(in, ' ');
80
+ if (NULL == tokenized) {
81
+ return;
82
+ }
83
84
int count = opal_argv_count(*out);
85
for (int i = 0; tokenized[i] != NULL; ++i) {
0 commit comments