]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Do not crash on retention overflow.
authorGlenn-1990 <g_christiaensen@msn.com>
Thu, 31 Mar 2016 21:37:13 +0000 (23:37 +0200)
committerJaroslav Kysela <perex@perex.cz>
Fri, 1 Apr 2016 15:11:21 +0000 (17:11 +0200)
src/main.c

index 4d1e3c71e7b7310b99ce4cff326b29735c2ca7a4..6fd1891f040475f9741016e3ab113e3de96c61c4 100644 (file)
@@ -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);
 }