2012-10-23 19:40:13 +02:00
|
|
|
---
|
|
|
|
lib/device/dev-cache.c | 6 +++++-
|
|
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
--- LVM2.2.02.98.orig/lib/device/dev-cache.c
|
|
|
|
+++ LVM2.2.02.98/lib/device/dev-cache.c
|
|
|
|
@@ -434,7 +434,11 @@ static int _insert_dir(const char *dir)
|
2009-05-15 22:00:20 +02:00
|
|
|
dirent_count = scandir(dir, &dirent, NULL, alphasort);
|
|
|
|
if (dirent_count > 0) {
|
|
|
|
for (n = 0; n < dirent_count; n++) {
|
|
|
|
- if (dirent[n]->d_name[0] == '.') {
|
|
|
|
+ if (dirent[n]->d_name[0] == '.' && dirent[n]->d_name[1] == '\0') {
|
|
|
|
+ free(dirent[n]);
|
|
|
|
+ continue;
|
|
|
|
+ }
|
2012-10-18 10:15:42 +02:00
|
|
|
+ if (dirent[n]->d_name[0] == '.' && dirent[n]->d_name[1] == '.' && dirent[n]->d_name[2] == '\0') {
|
2009-05-15 22:00:20 +02:00
|
|
|
free(dirent[n]);
|
|
|
|
continue;
|
|
|
|
}
|