diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2002-04-07 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2002-04-07 18:00:00 +0200 |
commit | c9a5d8ea5328e4a8bcb0c3423b825c02cb0c3b27 (patch) | |
tree | 5c60d0e45adc0cb556840fd48fa182a877184802 /mpatrol.diff | |
parent | 262327908d329a8c292d8ae71fe9d135390a3cde (diff) | |
download | vdr-patch-lnbsharing-c9a5d8ea5328e4a8bcb0c3423b825c02cb0c3b27.tar.gz vdr-patch-lnbsharing-c9a5d8ea5328e4a8bcb0c3423b825c02cb0c3b27.tar.bz2 |
Version 1.0.0vdr-1.0.0
- Fixed a problem with wrong EPG data in the Schedules menu (thanks to Tobias
Kerner, problem was initially reported by Michel Moster, but somehow I had
misplaced his message...).
- Added Spanish language texts (thanks to Ruben Nunez Francisco).
- Fixed resetting the "First day" timer parameter once the timer actually starts
recording.
- Fixed the still picture workaround in case the progress display is active
(thanks to Gerald Raaf).
- Fixed a problem with accessing the epg.data file before it is fully written
(thanks to Thilo Wunderlich for reporting this one).
- Now the EPG scan skips channels that have their 'Ca' parameter explicitly set
to an other DVB card (suggested by Sergei Haller).
- Fixed a possible hangup when reading a broken epg.data file (thanks to Henning
Holtschneider for pointing this one out).
- Fixed a bug in the editing process in case a previously edited file with the
same name was manually deleted on a system with more than one video directory
(thanks to Dirk Wiebel for reporting this one).
Diffstat (limited to 'mpatrol.diff')
-rw-r--r-- | mpatrol.diff | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/mpatrol.diff b/mpatrol.diff deleted file mode 100644 index 59497c4..0000000 --- a/mpatrol.diff +++ /dev/null @@ -1,56 +0,0 @@ -# This is a BitKeeper generated patch for the following project: -# Project Name: Linux VDR -# This patch format is intended for GNU patch command version 2.5 or higher. -# This patch includes the following deltas: -# ChangeSet 1.20 -> 1.21 -# config.c 1.4 -> 1.5 -# tools.c 1.2 -> 1.3 -# -# The following is the BitKeeper ChangeSet Log -# -------------------------------------------- -# 02/04/01 aschultz@warp10.net 1.21 -# fix memory management due to MPatrol -# -------------------------------------------- -# -diff -Nru a/config.c b/config.c ---- a/config.c Mon Apr 1 14:37:48 2002 -+++ b/config.c Mon Apr 1 14:37:48 2002 -@@ -265,7 +265,7 @@ - sscanf(apidbuf, "%d ,%d ", &apid1, &apid2); - if (p) - sscanf(p, "%d ,%d ", &dpid1, &dpid2); -- delete apidbuf; -+ free(apidbuf); - } - else - return false; -@@ -277,7 +277,7 @@ - tpid = 0; - } - strn0cpy(name, buffer, MaxChannelName); -- delete buffer; -+ free(buffer); - } - else - return false; -diff -Nru a/tools.c b/tools.c ---- a/tools.c Mon Apr 1 14:37:48 2002 -+++ b/tools.c Mon Apr 1 14:37:48 2002 -@@ -71,7 +71,7 @@ - esyslog(LOG_ERR, "ERROR: out of memory"); - } - else { -- delete dest; -+ free(dest); - dest = NULL; - } - return dest; -@@ -230,7 +230,7 @@ - const char *AddDirectory(const char *DirName, const char *FileName) - { - static char *buf = NULL; -- delete buf; -+ free(buf); - asprintf(&buf, "%s/%s", DirName && *DirName ? DirName : ".", FileName); - return buf; - } |