--- embedaddon/strongswan/src/libstrongswan/utils/parser_helper.c 2020/06/03 09:46:44 1.1.1.1 +++ embedaddon/strongswan/src/libstrongswan/utils/parser_helper.c 2021/03/17 00:20:08 1.1.1.2 @@ -16,6 +16,8 @@ #include #include #include +#include +#include #include "parser_helper.h" @@ -93,6 +95,7 @@ METHOD(parser_helper_t, file_next, FILE*, private_parser_helper_t *this) { parser_helper_file_t *file, *next; + struct stat st; char *name; array_get(this->files, ARRAY_TAIL, &file); @@ -112,7 +115,8 @@ METHOD(parser_helper_t, file_next, FILE*, .file = fopen(name, "r"), ); - if (next->file) + if (next->file && fstat(fileno(next->file), &st) == 0 && + S_ISREG(st.st_mode)) { array_insert(this->files, ARRAY_TAIL, next); return next->file;