mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-05 02:47:00 +08:00
Fix CID 1386084 (Uninitialized scalar variable)
The set_font method used the uninitialized member variable resolution_. Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
e2135de022
commit
b87fc523ca
@ -90,7 +90,8 @@ Pix* CairoARGB32ToPixFormat(cairo_surface_t *surface) {
|
||||
|
||||
StringRenderer::StringRenderer(const std::string& font_desc, int page_width,
|
||||
int page_height)
|
||||
: page_width_(page_width),
|
||||
: font_(font_desc),
|
||||
page_width_(page_width),
|
||||
page_height_(page_height),
|
||||
h_margin_(50),
|
||||
v_margin_(50),
|
||||
@ -118,7 +119,6 @@ StringRenderer::StringRenderer(const std::string& font_desc, int page_width,
|
||||
total_chars_(0),
|
||||
font_index_(0),
|
||||
last_offset_(0) {
|
||||
set_font(font_desc);
|
||||
set_resolution(kDefaultOutputResolution);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user