From b1af4853081160bdcd0bd65a1c4a789d7dd51acf Mon Sep 17 00:00:00 2001 From: horchi Date: Thu, 22 Jun 2017 20:44:35 +0200 Subject: 2017-06-22 version 1.1.72 (horchi)\n - bugfix: Fixed crash on end of recording\n\n --- HISTORY.h | 5 ++++- status.c | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/HISTORY.h b/HISTORY.h index db2cf36..1523af9 100644 --- a/HISTORY.h +++ b/HISTORY.h @@ -5,7 +5,7 @@ * */ -#define _VERSION "1.1.71" +#define _VERSION "1.1.72" #define VERSION_DATE "22.06.2017" #define DB_API 4 @@ -19,6 +19,9 @@ /* * ------------------------------------ +2017-06-22 version 1.1.72 (horchi) + - bugfix: Fixed crash on end of recording + 2017-06-22 version 1.1.71 (horchi) - bugfix: Fixed crash on recording diff --git a/status.c b/status.c index fe9cfa9..6acd011 100644 --- a/status.c +++ b/status.c @@ -123,7 +123,7 @@ void cUpdate::Recording(const cDevice* Device, const char* Name, const char* Fil // schedule this notification to perfrom it in oure context not in the cStatus Interface context // due to the needed list locks! - action.name = Name; + action.name = notNull(Name, ""); action.fileName = FileName; action.cardIndex = Device->CardIndex(); action.on = On; -- cgit v1.2.3