[CABMAN] Third addendum to 7afc888: Also use the the old code in the Trucate() method on Linux

This commit is contained in:
Eric Kohl 2019-09-19 15:36:18 +02:00
parent 0e4dd0fcbc
commit af7456a1e4

View file

@ -121,7 +121,11 @@ ULONG CCFDATAStorage::Destroy()
ULONG CCFDATAStorage::Truncate()
{
fclose(FileHandle);
#if defined(_WIN32)
FileHandle = fopen(FullName, "w+b");
#else
FileHandle = tmpfile();
#endif
if (FileHandle == NULL)
{
DPRINT(MID_TRACE, ("ERROR '%i'.\n", errno));