blob: 4a9c6a771fc4b721ce46ae8a205712a73a11cdb7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- libs/database.c.orig Sat May 25 23:17:10 2002
+++ libs/database.c Sat May 25 23:18:01 2002
@@ -73,7 +73,8 @@
/* create locale directories and symlinks */
- dir = opendir(data_dir);
+ if ((dir = opendir(data_dir)) == NULL)
+ return;
while((dir_ent = readdir(dir)) != NULL)
{
|