From: Glenn-1990 Date: Thu, 31 Mar 2016 21:37:13 +0000 (+0200) Subject: Do not crash on retention overflow. X-Git-Tag: v4.2.1~763 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=442e6e6e3d7bb3d94eb98e294181498666392d39;p=thirdparty%2Ftvheadend.git Do not crash on retention overflow. --- diff --git a/src/main.c b/src/main.c index 4d1e3c71e..6fd1891f0 100644 --- a/src/main.c +++ b/src/main.c @@ -1416,6 +1416,5 @@ htsmsg_t *tvheadend_capabilities_list(int check) */ void time_t_out_of_range_notify(int64_t val) { - tvherror("main", "time value of of range (%"PRId64") of time_t", val); - abort(); + tvherror("main", "time value out of range (%"PRId64") of time_t", val); }