1
mirror of https://github.com/hashcat/hashcat synced 2025-01-10 17:16:22 +01:00
This commit is contained in:
jsteube 2017-01-31 21:29:45 +01:00
parent 73763f55a3
commit 934cc6fcec

View File

@ -246,7 +246,7 @@ bool hc_path_create (const char *path)
{
if (hc_path_exist (path) == true) return false;
if (creat (path, O_CREAT) == -1) return false;
if (creat (path, S_IRUSR | S_IWUSR) == -1) return false;
unlink (path);