X-Git-Url: https://harishankar.org/repos/?p=wordblah.git;a=blobdiff_plain;f=wordblah.h;fp=wordblah.h;h=c641abcd604c40bcd4ee46690b4479641d99cd28;hp=48e1f288f9fac9134075c89d0341fe6b2e2feb2b;hb=89e08816eea395375fa364aab6adb126378c2c56;hpb=45f36755d87b858fd2d22ae239fed24d3f4faae9 diff --git a/wordblah.h b/wordblah.h index 48e1f28..c641abc 100644 --- a/wordblah.h +++ b/wordblah.h @@ -600,19 +600,23 @@ void save_puzzle (Puzzle *puzzle, const char* file) /* read the puzzle from a file */ Puzzle load_puzzle (const char* file) { + Puzzle p; /* First open the GZip file */ gzFile insourcefile = gzopen (file, "rb"); if (insourcefile == NULL) { fprintf (stderr, "%s %s\n", ERROR_READING_FILE, COMPRESSED); - exit (1); + /* return an invalid puzzle */ + init_puzzle (&p, 0); + return p; } /* Open a temporary file to uncompress the contents */ FILE *infile = tmpfile (); if (infile == NULL) { fprintf (stderr, "%s\n", ERROR_READING_FILE); - exit (1); + init_puzzle (&p, 0); + return p; } /* Put the uncompressed content to the temp file */ char buf[128]; @@ -626,7 +630,9 @@ Puzzle load_puzzle (const char* file) fprintf (stderr, "%s\n", ERROR_READING_FILE); fclose (infile); gzclose (insourcefile); - exit (1); + /* return an invalid puzzle */ + init_puzzle (&p, 0); + return p; } num = gzread (insourcefile, buf, 128); } @@ -637,7 +643,6 @@ Puzzle load_puzzle (const char* file) fseek (infile, 0, 0); /* Read the temporary file contents to the structure Puzzle */ - Puzzle p; char line[MAX_CLUE_LENGTH+10]; fgets (line, MAX_CLUE_LENGTH + 10, infile); p.grid_size = atoi (line); @@ -645,6 +650,7 @@ Puzzle load_puzzle (const char* file) puzzle object */ if (p.grid_size == 0) { + fprintf (stderr, "%s\n", INVALID_PUZZLE); init_puzzle (&p, 0); return p; }