Skip to content

Commit

Permalink
Merge pull request #155 from stweil/master
Browse files Browse the repository at this point in the history
Fix duplicate fclose
  • Loading branch information
zdenop committed Nov 25, 2015
2 parents 62ae99c + 9f87c36 commit 198ee0a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ccmain/recogtraining.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void Tesseract::recog_training_segmented(const STRING &fname,
const char *lastdot = strrchr(box_fname.string(), '.');
if (lastdot != NULL) box_fname[lastdot - box_fname.string()] = '\0';
box_fname += ".box";
// read_next_box() will close box_file
// ReadNextBox() will close box_file
FILE *box_file = open_file(box_fname.string(), "r");

PAGE_RES_IT page_res_it;
Expand Down Expand Up @@ -132,7 +132,6 @@ void Tesseract::recog_training_segmented(const STRING &fname,
}
page_res_it.forward();
} while (keep_going);
fclose(box_file);

// Set up scripts on all of the words that did not get sent to
// ambigs_classify_and_output. They all should have, but if all the
Expand Down

0 comments on commit 198ee0a

Please sign in to comment.