From: simon Date: Wed, 6 Jul 2005 21:24:28 +0000 (+0000) Subject: Missing quit on error was leading to an assertion failure on some X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/commitdiff_plain/44f0599fe04cb578fb64bf17e54a7c19611f40c4 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 --- 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);