diff --git a/tools/blkpack.c b/tools/blkpack.c index 52b9b34..ec3ad72 100644 --- a/tools/blkpack.c +++ b/tools/blkpack.c @@ -2,6 +2,7 @@ #include #include #include +#include #include #include @@ -41,6 +42,10 @@ int main(int argc, char *argv[]) strcat(fullpath, "/"); strcat(fullpath, ep->d_name); FILE *fp = fopen(fullpath, "r"); + if (fp == NULL) { + fprintf(stderr, "Could not open %s: %s\n", ep->d_name, strerror(errno)); + continue; + } char *line = NULL; size_t n = 0; for (int i=0; i<16; i++) {