Browse Source

nfqws,tpws: fix hostlist-domains file open test

pull/1188/merge
bol-van 1 month ago
parent
commit
af89d03118
  1. 4
      nfq/nfqws.c
  2. 4
      tpws/tpws.c

4
nfq/nfqws.c

@ -126,14 +126,14 @@ static bool test_list_files()
struct ipset_file *ifile;
LIST_FOREACH(hfile, &params.hostlists, next)
if (!file_open_test(hfile->filename, O_RDONLY))
if (hfile->filename && !file_open_test(hfile->filename, O_RDONLY))
{
DLOG_PERROR("file_open_test");
DLOG_ERR("cannot access hostlist file '%s'\n",hfile->filename);
return false;
}
LIST_FOREACH(ifile, &params.ipsets, next)
if (!file_open_test(ifile->filename, O_RDONLY))
if (hfile->filename && !file_open_test(ifile->filename, O_RDONLY))
{
DLOG_PERROR("file_open_test");
DLOG_ERR("cannot access ipset file '%s'\n",ifile->filename);

4
tpws/tpws.c

@ -122,14 +122,14 @@ static bool test_list_files()
struct ipset_file *ifile;
LIST_FOREACH(hfile, &params.hostlists, next)
if (!file_open_test(hfile->filename, O_RDONLY))
if (hfile->filename && !file_open_test(hfile->filename, O_RDONLY))
{
DLOG_PERROR("file_open_test");
DLOG_ERR("cannot access hostlist file '%s'\n",hfile->filename);
return false;
}
LIST_FOREACH(ifile, &params.ipsets, next)
if (!file_open_test(ifile->filename, O_RDONLY))
if (hfile->filename && !file_open_test(ifile->filename, O_RDONLY))
{
DLOG_PERROR("file_open_test");
DLOG_ERR("cannot access ipset file '%s'\n",ifile->filename);

Loading…
Cancel
Save