summaryrefslogtreecommitdiffstats
path: root/system/ttmkfdir/patches/ttmkfdir-3.0.9-segfaults.patch
blob: 17a8dec55060a6d72f9ee9ea73392aa4ae4131ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- ttmkfdir-3.0.9/directory.cpp.back	2005-10-08 14:25:37.839328408 +0800
+++ ttmkfdir-3.0.9/directory.cpp	2005-10-08 14:26:00.021956136 +0800
@@ -1,5 +1,6 @@
 #include <cctype>
 #include <dirent.h>
+#include <stdio.h>
 #include <sys/stat.h>
 #include <unistd.h>
 
@@ -13,6 +14,10 @@
 directory::scan (const std::string &dir)
 {
     DIR *ttfdir = opendir(dir.c_str ());
+    if (!ttfdir) {
+        printf("%s is not exist!\n", dir.c_str ());
+        exit(-1);
+    }
 
     this->clear ();
     dirpath = dir;