diff --git a/CONTRIBUTORS b/CONTRIBUTORS index c16883bc..6cac93f0 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2545,6 +2545,8 @@ Sundararaj Reel for reporting some missing 'const' in tChannelID for suggesting to add optional case insensitive sorting to cStringList::Sort() for reporting a bug in handling symbolic links in cRecordings::ScanVideoDir() + for reporting a memory leak in cRecordings::ScanVideoDir() in case there are too + many link levels Ales Jurik for reporting broken SI data on Czech/Slovak channels after changing the default diff --git a/HISTORY b/HISTORY index 259017a8..fd03fb4f 100644 --- a/HISTORY +++ b/HISTORY @@ -6787,3 +6787,5 @@ Video Disk Recorder Revision History - Fixed bonding more than two devices. - Fixed handling symbolic links in cRecordings::ScanVideoDir() (reported by Sundararaj Reel). +- Fixed a memory leak in cRecordings::ScanVideoDir() in case there are too many + link levels (reported by Sundararaj Reel). diff --git a/recording.c b/recording.c index 2a8108bc..698b2db0 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.c 2.40 2011/12/10 14:12:55 kls Exp $ + * $Id: recording.c 2.41 2011/12/10 14:22:37 kls Exp $ */ #include "recording.h" @@ -1103,25 +1103,21 @@ void cRecordings::ScanVideoDir(const char *DirName, bool Foreground, int LinkLev struct dirent *e; while ((Foreground || Running()) && (e = d.Next()) != NULL) { if (strcmp(e->d_name, ".") && strcmp(e->d_name, "..")) { - char *buffer = strdup(AddDirectory(DirName, e->d_name)); + cString buffer = AddDirectory(DirName, e->d_name); struct stat st; if (lstat(buffer, &st) == 0) { int Link = 0; if (S_ISLNK(st.st_mode)) { if (LinkLevel > MAX_LINK_LEVEL) { - isyslog("max link level exceeded - not scanning %s", buffer); + isyslog("max link level exceeded - not scanning %s", *buffer); continue; } Link = 1; - char *old = buffer; - buffer = ReadLink(old); - free(old); - if (!buffer) + buffer = ReadLink(buffer); + if (!*buffer) continue; - if (stat(buffer, &st) != 0) { - free(buffer); + if (stat(buffer, &st) != 0) continue; - } } if (S_ISDIR(st.st_mode)) { if (endswith(buffer, deleted ? DELEXT : RECEXT)) { @@ -1144,7 +1140,6 @@ void cRecordings::ScanVideoDir(const char *DirName, bool Foreground, int LinkLev ScanVideoDir(buffer, Foreground, LinkLevel + Link); } } - free(buffer); } } }