1
我有,我已經發現了一個錯誤歸結爲:分段故障時使用FTS fts_open()
#include <sys/types.h>
#include <sys/stat.h>
#include <fts.h>
#include <stdlib.h>
int main() {
char *LOG_ROOT = "/var/log";
FTS *ftsp;
FTSENT *p, *chp;
int fts_options = FTS_COMFOLLOW | FTS_LOGICAL | FTS_NOCHDIR;
char *paths[] = { LOG_ROOT };
fts_open(paths, fts_options, NULL);
}
爲什麼這個段錯誤?
添加了與這個相關的「數組」標籤。 – OregonTrail 2013-03-06 05:02:45