mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-28 16:17:28 -04:00
* Fixed up various memory leaks (mainly serialiser cleanup).
* Added pthread_detach() to allow proper thread cleanup (affected ony Linux!) git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@460 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
e3df41b1da
commit
d69c2f72f1
9 changed files with 36 additions and 8 deletions
|
@ -88,6 +88,11 @@ BinFileInterface::~BinFileInterface()
|
|||
{
|
||||
fclose(buf);
|
||||
}
|
||||
|
||||
if (hash)
|
||||
{
|
||||
delete hash;
|
||||
}
|
||||
}
|
||||
|
||||
int BinFileInterface::close()
|
||||
|
@ -183,11 +188,14 @@ BinMemInterface::BinMemInterface(const void *data, const int defsize, int flags)
|
|||
}
|
||||
|
||||
BinMemInterface::~BinMemInterface()
|
||||
{
|
||||
if (buf)
|
||||
free(buf);
|
||||
return;
|
||||
}
|
||||
{
|
||||
if (buf)
|
||||
free(buf);
|
||||
|
||||
if (hash)
|
||||
delete hash;
|
||||
return;
|
||||
}
|
||||
|
||||
int BinMemInterface::close()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue