mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-27 20:59:36 +08:00
Fix uninitialized scalar variable (CID 1395880)
This fixes a warning from Coverity Scan. Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
146d2caa9d
commit
98843e0d81
@ -77,7 +77,7 @@ class ApplyBoxTest : public testing::Test {
|
||||
EXPECT_TRUE(
|
||||
it->BoundingBox(tesseract::RIL_SYMBOL, &left, &top, &right, &bottom));
|
||||
TBOX ocr_box(ICOORD(left, height - bottom), ICOORD(right, height - top));
|
||||
int line_number;
|
||||
int line_number = 0;
|
||||
TBOX truth_box;
|
||||
STRING box_text;
|
||||
EXPECT_TRUE(
|
||||
|
Loading…
Reference in New Issue
Block a user