Skip to content

Commit

Permalink
Simplify variable declaration.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjbronner authored Feb 12, 2024
1 parent 209cf5c commit 304014f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/api/pdfrenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -664,8 +664,6 @@ bool TessPDFRenderer::BeginDocumentHandler() {
bool TessPDFRenderer::imageToPDFObj(Pix *pix, const char *filename, long int objnum,
char **pdf_object, long int *pdf_object_size,
const int jpg_quality) {
int sad;

if (!pdf_object_size || !pdf_object) {
return false;
}
Expand All @@ -676,7 +674,7 @@ bool TessPDFRenderer::imageToPDFObj(Pix *pix, const char *filename, long int obj
}

L_Compressed_Data *cid = nullptr;
sad = l_generateCIDataForPdf(filename, pix, jpg_quality, &cid);
auto sad = l_generateCIDataForPdf(filename, pix, jpg_quality, &cid);

if (sad || !cid) {
l_CIDataDestroy(&cid);
Expand Down

0 comments on commit 304014f

Please sign in to comment.