Picture of Wim 4127
Registered 6 years 245 days
Wim 4127 Tuesday, 3 May 2022, 02:25 PM
Double free exception when using temp files
I created a task object, and I take following steps in this task:

_provider = CreateTempFilesProvider(_iomux);
_tempFiles = _provider->CreateTempFiles(_log->AsIInstanceLog(), _appServiceId.c_str(), _dbName.c_str());
_writer = _tempFiles->Write(this);
if (_writer)
{
std::string dummyContent = "xqting";
_writer->Write((byte*)dummyContent.c_str(), dummyContent.length(), true);
}

Which causes the file to be written on the system. However, the Write functions third parameter set to true means this is the only block and the file should be closed and we get the complete call back.

void CreateTempFileTask::TaskComplete(class ITask* const task)
{
//_writer->Close();
LOGI("Created dummy temp file task complete reported");
_completed = true;
}

This callback is indeed triggered. However, I then get an unhandled exception from iomux->Run (see screenshot attached) and in the debug window it states "free(): double free detected in tcache 2"
The destructor of my tasks looks as below. It doesn't matter whether I comment or uncomment these deletes, it always throws that exception whether I delete my objects or not (It would make sense that I delete them, since I created them as well)

CreateTempFileTask::~CreateTempFileTask()
{
//if (_provider) delete _provider;
//if (_tempFiles) delete _tempFiles;
//if (_writer) delete _writer;
}

Please advise
iomuxrunerror.jpg

Picture of Wim 4127
Registered 6 years 245 days
Wim 4127 Tuesday, 3 May 2022, 02:28 PM
Re: Double free exception when using temp files
Extra, if I use _writer->Write((byte*)dummyContent.c_str(), dummyContent.length(), false); the callback is of course not called and the crash doesn't happen, but, but nothing is cleaned up either so that's also not a beautifull solution (but a workaround used now)
Andreas Fink
Moderator Registered 13 years 45 days
Andreas Fink (innovaphone) Tuesday, 31 May 2022, 12:51 PM in response to Wim 4127
Re: Double free exception when using temp files
Hello Wim,

could you please post the part where the destructor (CreateTempFileTask::~CreateTempFileTask()) is called from?

Best Regards
Andreas Fink
← You can define your color theme preference here