mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-15 02:44:20 -05: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
@ -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…
Reference in New Issue
Block a user