mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-04 09:49:16 +08:00
Fix CID 1390821 (Uninitialized variable)
It was introduced by my latest commit 21d5ce5717
.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
7dea671774
commit
7cf7d62929
@ -60,7 +60,7 @@ class StaticShape {
|
||||
}
|
||||
|
||||
bool DeSerialize(TFile *fp) {
|
||||
int32_t tmp;
|
||||
int32_t tmp = LT_NONE;
|
||||
bool result =
|
||||
fp->FReadEndian(&batch_, sizeof(batch_), 1) == 1 &&
|
||||
fp->FReadEndian(&height_, sizeof(height_), 1) == 1 &&
|
||||
|
Loading…
Reference in New Issue
Block a user