mirror of
https://github.com/aaru-dps/fstester.git
synced 2025-12-16 19:24:39 +00:00
Fix dereferencing strings.
This commit is contained in:
@@ -73,8 +73,8 @@ void DirectoryDepth(const char* path)
|
||||
|
||||
while(!rc)
|
||||
{
|
||||
memset(&filename, 0, 9);
|
||||
sprintf(&filename, "%08d", pos);
|
||||
memset(filename, 0, 9);
|
||||
sprintf(filename, "%08d", pos);
|
||||
rc = __os2_mkdir(filename);
|
||||
|
||||
if(!rc) rc = __os2_chdir(filename);
|
||||
|
||||
Reference in New Issue
Block a user