[CABMAN] Second addendum to 7afc888: Use the old code to make Linux happy.

Sorry for the noise, but I do not have a Linux machine to test the build. :-/
This commit is contained in:
Eric Kohl 2019-09-19 15:25:23 +02:00
parent 2949b2f08b
commit 0e4dd0fcbc

View file

@ -55,6 +55,7 @@ CCFDATAStorage::~CCFDATAStorage()
*/
ULONG CCFDATAStorage::Create()
{
#if defined(_WIN32)
char TmpName[PATH_MAX];
char *pName;
int length;
@ -77,7 +78,10 @@ ULONG CCFDATAStorage::Create()
FileHandle = fopen(FullName, "w+b");
if (FileHandle == NULL)
return CAB_STATUS_CANNOT_CREATE;
#else
if ((FileHandle = tmpfile()) == NULL)
return CAB_STATUS_CANNOT_CREATE;
#endif
return CAB_STATUS_SUCCESS;
}
@ -98,7 +102,9 @@ ULONG CCFDATAStorage::Destroy()
FileHandle = NULL;
#if defined(_WIN32)
remove(FullName);
#endif
return CAB_STATUS_SUCCESS;
}