From 2d42c25f696d15dfd6f86012d124ae212508c26e Mon Sep 17 00:00:00 2001 From: "Julian M. Kunkel" Date: Thu, 30 Aug 2018 15:10:38 +0100 Subject: [PATCH] Fix issue #79 for the last run in a configuration file. --- src/parse_options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse_options.c b/src/parse_options.c index 8e8e773..7a4c7b6 100755 --- a/src/parse_options.c +++ b/src/parse_options.c @@ -416,7 +416,7 @@ IOR_test_t *ReadConfigScript(char *scriptName) /* close the script */ if (fclose(file) != 0) ERR("fclose() of script file failed"); - AllocResults(head); + AllocResults(tail); return head; }