mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-05 02:47:00 +08:00
Fix CID 1164616 (Uninitialized scalar field)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
430dc5c0b6
commit
37f82824f5
@ -72,10 +72,11 @@ struct Pix;
|
|||||||
ELISTIZEH (C_OUTLINE)
|
ELISTIZEH (C_OUTLINE)
|
||||||
class DLLSYM C_OUTLINE:public ELIST_LINK {
|
class DLLSYM C_OUTLINE:public ELIST_LINK {
|
||||||
public:
|
public:
|
||||||
C_OUTLINE() { //empty constructor
|
C_OUTLINE() {
|
||||||
steps = nullptr;
|
stepcount = 0;
|
||||||
offsets = nullptr;
|
steps = nullptr;
|
||||||
}
|
offsets = nullptr;
|
||||||
|
}
|
||||||
C_OUTLINE( //constructor
|
C_OUTLINE( //constructor
|
||||||
CRACKEDGE *startpt, //from edge detector
|
CRACKEDGE *startpt, //from edge detector
|
||||||
ICOORD bot_left, //bounding box //length of loop
|
ICOORD bot_left, //bounding box //length of loop
|
||||||
|
Loading…
Reference in New Issue
Block a user