mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-25 06:40:58 -04:00
corrected mismatched free/delete in avatar items. Might have caused random crashes.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2740 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
7c6ad47bcf
commit
abeb4c92ee
1 changed files with 5 additions and 2 deletions
|
@ -149,8 +149,11 @@ uint32_t RsChatAvatarItem::serial_size()
|
||||||
|
|
||||||
RsChatAvatarItem::~RsChatAvatarItem()
|
RsChatAvatarItem::~RsChatAvatarItem()
|
||||||
{
|
{
|
||||||
free(image_data) ;
|
if(image_data != NULL)
|
||||||
image_data = NULL ;
|
{
|
||||||
|
delete[] image_data ;
|
||||||
|
image_data = NULL ;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* serialise the data to the buffer */
|
/* serialise the data to the buffer */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue