mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed following symbolic links in RemoveFileOrDir()
This commit is contained in:
parent
5203fa03e8
commit
2009716599
1
HISTORY
1
HISTORY
@ -6477,3 +6477,4 @@ Video Disk Recorder Revision History
|
|||||||
- Added locking to the cCutter functions to avoid a crash in case CutRecording()
|
- Added locking to the cCutter functions to avoid a crash in case CutRecording()
|
||||||
is called from a plugin (reported by Andreas Mair).
|
is called from a plugin (reported by Andreas Mair).
|
||||||
- Fixed DDS detection for HD resolution subtitles (thanks to Reinhard Nissl).
|
- Fixed DDS detection for HD resolution subtitles (thanks to Reinhard Nissl).
|
||||||
|
- Fixed following symbolic links in RemoveFileOrDir().
|
||||||
|
15
tools.c
15
tools.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: tools.c 2.7 2010/02/28 13:31:46 kls Exp $
|
* $Id: tools.c 2.8 2010/08/29 15:03:08 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "tools.h"
|
#include "tools.h"
|
||||||
@ -367,9 +367,12 @@ bool RemoveFileOrDir(const char *FileName, bool FollowSymlinks)
|
|||||||
if (strcmp(e->d_name, ".") && strcmp(e->d_name, "..")) {
|
if (strcmp(e->d_name, ".") && strcmp(e->d_name, "..")) {
|
||||||
cString buffer = AddDirectory(FileName, e->d_name);
|
cString buffer = AddDirectory(FileName, e->d_name);
|
||||||
if (FollowSymlinks) {
|
if (FollowSymlinks) {
|
||||||
int size = strlen(buffer) * 2; // should be large enough
|
struct stat st2;
|
||||||
|
if (stat(buffer, &st2) == 0) {
|
||||||
|
if (S_ISLNK(st2.st_mode)) {
|
||||||
|
int size = st2.st_size + 1;
|
||||||
char *l = MALLOC(char, size);
|
char *l = MALLOC(char, size);
|
||||||
int n = readlink(buffer, l, size);
|
int n = readlink(buffer, l, size - 1);
|
||||||
if (n < 0) {
|
if (n < 0) {
|
||||||
if (errno != EINVAL)
|
if (errno != EINVAL)
|
||||||
LOG_ERROR_STR(*buffer);
|
LOG_ERROR_STR(*buffer);
|
||||||
@ -384,6 +387,12 @@ bool RemoveFileOrDir(const char *FileName, bool FollowSymlinks)
|
|||||||
esyslog("ERROR: symlink name length (%d) exceeded anticipated buffer size (%d)", n, size);
|
esyslog("ERROR: symlink name length (%d) exceeded anticipated buffer size (%d)", n, size);
|
||||||
free(l);
|
free(l);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else if (errno != ENOENT) {
|
||||||
|
LOG_ERROR_STR(FileName);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
dsyslog("removing %s", *buffer);
|
dsyslog("removing %s", *buffer);
|
||||||
if (remove(buffer) < 0)
|
if (remove(buffer) < 0)
|
||||||
LOG_ERROR_STR(*buffer);
|
LOG_ERROR_STR(*buffer);
|
||||||
|
Loading…
Reference in New Issue
Block a user