correctly handle filter file loading error, small tweak

This commit is contained in:
cathugger 2020-05-22 17:55:37 +00:00
parent 897dcbd350
commit e933a9b806
No known key found for this signature in database
GPG key ID: 9BADDA2DAF6F01A8
3 changed files with 13 additions and 3 deletions

View file

@ -95,6 +95,7 @@ int closefile(FH fd)
int createdir(const char *path,int secret)
{
// XXX don't know how to handle secret argument
(void) secret;
return CreateDirectoryA(path,0) ? 0 : -1;
}