You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-plugins/vdr-remotetimers/files/vdr-remotetimers-0.0.1-svdr...

25 lines
747 B

Bugfix for version 0.0.1 (reported by Maniac@vdrportal):
Either make sure svdrpservice is loaded before remotetimers or apply
this patch.
--- timers.c.orig 2007-03-16 07:39:06.000000000 +0100
+++ timers.c 2007-03-16 07:41:27.000000000 +0100
@@ -48,7 +48,7 @@
// cRemoteTimers -------------------------------------------------
cRemoteTimers::cRemoteTimers(): refcount(0) {
- plugin = cPluginManager::GetPlugin("svdrpservice");
+ plugin = NULL;
svdrp.handle = -1;
}
@@ -59,6 +59,8 @@
bool cRemoteTimers::Connect() {
refcount++;
+ if (!plugin)
+ plugin = cPluginManager::GetPlugin("svdrpservice");
if (plugin && svdrp.handle < 0) {
svdrp.serverIp = RemoteTimersSetup.serverIp;
svdrp.serverPort = RemoteTimersSetup.serverPort;