Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Backports:SLE-15-SP4:RebuildFactoryUpdates
yudit
uniprint-catch-bad_alloc-exceptions.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File uniprint-catch-bad_alloc-exceptions.patch of Package yudit
--- yudit-2.9.6.orig/uniprint/Main.cpp 2017-06-08 10:55:22.617380172 +0200 +++ yudit-2.9.6/uniprint/Main.cpp 2017-06-08 10:57:21.453489303 +0200 @@ -37,6 +37,8 @@ #include <string.h> #include <stdlib.h> +#include <new> + #define BUFFER_SIZE 512 static const char *version="uniprint version %s GNU(c) Gaspar Sinai\n"; @@ -318,11 +320,20 @@ uniPrint.setLineEndMark(shownl); uniPrint.setWordWrap(wrap); - if (!uniPrint.print (ifileString, utf8.encode (res))) + try { - fprintf (stderr, "uniprint: can not print.\n"); - return 1; + if (!uniPrint.print (ifileString, utf8.encode (res))) + { + fprintf (stderr, "uniprint: can not print.\n"); + return 1; + } + } + catch (std::bad_alloc) + { + fprintf (stderr, "uniprint: can not print (out of memory).\n"); + return 1; } + int pagecount = uniPrint.getPageCount(); if (pagecount > 1) {
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor