The book-probe code forgot to close the book file after opening it.
authorH.G. Muller <h.g.muller@hccnet.nl>
Mon, 26 Oct 2009 06:21:07 +0000 (23:21 -0700)
committerArun Persaud <arun@nubati.net>
Mon, 26 Oct 2009 06:21:07 +0000 (23:21 -0700)
fixed by adding an fclose at two points.

book.c

diff --git a/book.c b/book.c
index 2ec8546..ba7a9af 100644 (file)
--- a/book.c
+++ b/book.c
@@ -481,7 +481,10 @@ char *ProbeBook(int moveNr, char *book)
     if(appData.debugMode) fprintf(debugFP, "book key = %08x%08x\n", (unsigned int)(key>>32), (unsigned int)key);
 
     offset=find_key(f, key, &entry);
-    if(entry.key != key) return NULL;
+    if(entry.key != key) {
+         fclose(f);
+         return NULL;
+    }
     entries[0] = entry;
     count=1;
     fseek(f, 16*(offset+1), SEEK_SET);
@@ -510,5 +513,6 @@ char *ProbeBook(int moveNr, char *book)
     move_to_string(move_s, entries[i].move);
     if(appData.debugMode) fprintf(debugFP, "book move field = %d\n", entries[i].move);
 
+    fclose(f);
     return move_s;
 }