ANN static inline m_bool compiler_open(MemPool p, struct Compiler* c) {
char name[strlen(c->name) + 1];
strcpy(name, c->name);
-// if(c->type == COMPILE_FILE && !is_reg(name)) {
-// gw_err(_("'%s': is a not a regular file\n"), name);
-// return GW_ERROR;
-// }
+#ifndef __FUZZING__
+ if(c->type == COMPILE_FILE && !is_reg(name)) {
+ gw_err(_("'%s': is a not a regular file\n"), name);
+ return GW_ERROR;
+ }
+#endif
if(_compiler_open(c) < 0) {
compiler_error(p, c);
gw_err(_("can't open '%s'\n"), name);