From 44f0599fe04cb578fb64bf17e54a7c19611f40c4 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 6 Jul 2005 21:24:28 +0000 Subject: [PATCH] Missing quit on error was leading to an assertion failure on some types of incorrectly formatted save file. git-svn-id: svn://svn.tartarus.org/sgt/puzzles@6079 cda61777-01e9-0310-a592-d414129be87e --- midend.c | 1 + 1 file changed, 1 insertion(+) diff --git a/midend.c b/midend.c index 7ef05cb..691c643 100644 --- a/midend.c +++ b/midend.c @@ -1350,6 +1350,7 @@ char *midend_deserialise(midend_data *me, if (key[8] != ':') { if (started) ret = "Data was incorrectly formatted for a saved game file"; + goto cleanup; } len = strcspn(key, ": "); assert(len <= 8); -- 2.11.0