From 44a226088c7f2eca7607fd396767aac154d22ac8 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Tue, 17 Sep 2019 21:59:42 +0200 Subject: [PATCH] Fix CID 1164624 (Uninitialized members) Signed-off-by: Stefan Weil --- src/textord/tabvector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textord/tabvector.h b/src/textord/tabvector.h index 212e4f6a0..ce7464b8a 100644 --- a/src/textord/tabvector.h +++ b/src/textord/tabvector.h @@ -413,7 +413,7 @@ class TabVector : public ELIST2_LINK { // True if a separator line intersects at least 2 other lines. bool intersects_other_lines_ = false; // The type of this TabVector. - TabAlignment alignment_; + TabAlignment alignment_ = TA_LEFT_ALIGNED; // The list of boxes whose edges are aligned at this TabVector. BLOBNBOX_CLIST boxes_; // List of TabVectors that have a connection with this via a text line.