mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[CABMAN] Third addendum to 7afc888
: Also use the the old code in the Trucate() method on Linux
This commit is contained in:
parent
0e4dd0fcbc
commit
af7456a1e4
1 changed files with 4 additions and 0 deletions
|
@ -121,7 +121,11 @@ ULONG CCFDATAStorage::Destroy()
|
||||||
ULONG CCFDATAStorage::Truncate()
|
ULONG CCFDATAStorage::Truncate()
|
||||||
{
|
{
|
||||||
fclose(FileHandle);
|
fclose(FileHandle);
|
||||||
|
#if defined(_WIN32)
|
||||||
FileHandle = fopen(FullName, "w+b");
|
FileHandle = fopen(FullName, "w+b");
|
||||||
|
#else
|
||||||
|
FileHandle = tmpfile();
|
||||||
|
#endif
|
||||||
if (FileHandle == NULL)
|
if (FileHandle == NULL)
|
||||||
{
|
{
|
||||||
DPRINT(MID_TRACE, ("ERROR '%i'.\n", errno));
|
DPRINT(MID_TRACE, ("ERROR '%i'.\n", errno));
|
||||||
|
|
Loading…
Reference in a new issue