1
0
mirror of https://github.com/pdewacht/brlaser synced 2024-12-27 07:48:21 +01:00

Reject unexpected raster formats

This commit is contained in:
Peter De Wachter 2015-01-31 23:16:35 +01:00
parent 1474716b27
commit 569e3f7766

View File

@ -169,7 +169,16 @@ int main(int argc, char *argv[]) {
{
job job(stdout, ascii_job_name(job_name, job_charset));
while (!interrupted && cupsRasterReadHeader2(ras, &header)) {
if (header.cupsBitsPerPixel != 1
|| header.cupsBitsPerColor != 1
|| header.cupsNumColors != 1
|| header.cupsBytesPerLine > 10000) {
fprintf(stderr, "ERROR: Page %d: Bogus raster data.\n", pages + 1);
dump_page_header(header);
return 1;
}
if (pages == 0) {
fprintf(stderr, "DEBUG: Page header of first page\n");
dump_page_header(header);
}
job.encode_page(build_page_params(),
@ -180,8 +189,9 @@ int main(int argc, char *argv[]) {
fprintf(stderr, "PAGE: %d %d\n", ++pages, header.NumCopies);
}
}
if (pages == 0) {
fprintf(stderr, "ERROR: No pages were found.");
fprintf(stderr, "ERROR: No pages were found.\n");
return 1;
}