From: bert hubert Date: Thu, 23 Oct 2014 17:28:36 +0000 (+0200) Subject: make very sure we don't keel over if something goes wrong polling security status... X-Git-Tag: rec-3.7.0-rc1~188 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea272da2fcb8371e4d8981d05331d1b2f0a292f8;p=thirdparty%2Fpdns.git make very sure we don't keel over if something goes wrong polling security status in auth --- diff --git a/pdns/common_startup.cc b/pdns/common_startup.cc index 824f8e8fd1..656efe615d 100644 --- a/pdns/common_startup.cc +++ b/pdns/common_startup.cc @@ -413,7 +413,10 @@ void mainthread() for(;;) { sleep(1800); - doSecPoll(false); + try { + doSecPoll(false); + } + catch(...){} } L<