master
Julian M. Kunkel 2019-04-19 10:20:04 +01:00
parent 27ac1b88af
commit 8fd755147a
1 changed files with 4 additions and 1 deletions

View File

@ -322,9 +322,12 @@ void ParseLine(char *line, IOR_param_t * test, options_all_t * module_options)
start = line;
do {
end = strchr(start, '#');
if (end != NULL)
*end = '\0';
end = strchr(start, ',');
if (end != NULL)
*end = '\0';
*end = '\0';
DecodeDirective(start, test, module_options);
start = end + 1;
} while (end != NULL);