mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
fixed memory leak in deleteGroup and removed unnecessary pointer in the functions called below
This commit is contained in:
parent
a545481daa
commit
cf2edb50b4
@ -1668,14 +1668,14 @@ void RsGenExchange::updateGroup(uint32_t& token, RsGxsGrpItem* grpItem)
|
||||
#endif
|
||||
}
|
||||
|
||||
void RsGenExchange::deleteGroup(uint32_t& token, RsGxsGrpItem* grpItem)
|
||||
void RsGenExchange::deleteGroup(uint32_t& token, const RsGxsGroupId& grpId)
|
||||
{
|
||||
RS_STACK_MUTEX(mGenMtx) ;
|
||||
RS_STACK_MUTEX(mGenMtx) ;
|
||||
token = mDataAccess->generatePublicToken();
|
||||
mGroupDeletePublish.push_back(GroupDeletePublish(grpItem, token));
|
||||
mGroupDeletePublish.push_back(GroupDeletePublish(grpId, token));
|
||||
|
||||
#ifdef GEN_EXCH_DEBUG
|
||||
std::cerr << "RsGenExchange::deleteGroup() token: " << token;
|
||||
std::cerr << "RsGenExchange::deleteGroup() token: " << token;
|
||||
std::cerr << std::endl;
|
||||
#endif
|
||||
}
|
||||
@ -2319,14 +2319,10 @@ void RsGenExchange::processGroupDelete()
|
||||
std::vector<GroupDeletePublish>::iterator vit = mGroupDeletePublish.begin();
|
||||
for(; vit != mGroupDeletePublish.end(); ++vit)
|
||||
{
|
||||
GroupDeletePublish& gdp = *vit;
|
||||
uint32_t token = gdp.mToken;
|
||||
const RsGxsGroupId& groupId = gdp.grpItem->meta.mGroupId;
|
||||
std::vector<RsGxsGroupId> gprIds;
|
||||
gprIds.push_back(groupId);
|
||||
gprIds.push_back(vit->mGroupId);
|
||||
mDataStore->removeGroups(gprIds);
|
||||
toNotify.insert(std::make_pair(
|
||||
token, GrpNote(true, groupId)));
|
||||
toNotify.insert(std::make_pair( vit->mToken, GrpNote(true, vit->mGroupId)));
|
||||
}
|
||||
|
||||
|
||||
|
@ -519,7 +519,7 @@ protected:
|
||||
* @param token
|
||||
* @param grpItem
|
||||
*/
|
||||
void deleteGroup(uint32_t& token, RsGxsGrpItem* grpItem);
|
||||
void deleteGroup(uint32_t& token, const RsGxsGroupId &grpId);
|
||||
|
||||
public:
|
||||
/*!
|
||||
|
@ -222,9 +222,9 @@ public:
|
||||
class GroupDeletePublish
|
||||
{
|
||||
public:
|
||||
GroupDeletePublish(RsGxsGrpItem* item, uint32_t token)
|
||||
: grpItem(item), mToken(token) {}
|
||||
RsGxsGrpItem* grpItem;
|
||||
GroupDeletePublish(const RsGxsGroupId& grpId, uint32_t token)
|
||||
: mGroupId(grpId), mToken(token) {}
|
||||
RsGxsGroupId mGroupId;
|
||||
uint32_t mToken;
|
||||
};
|
||||
|
||||
|
@ -1433,17 +1433,14 @@ bool p3IdService::updateGroup(uint32_t& token, RsGxsIdGroup &group)
|
||||
|
||||
bool p3IdService::deleteGroup(uint32_t& token, RsGxsIdGroup &group)
|
||||
{
|
||||
RsGxsId id = RsGxsId(group.mMeta.mGroupId.toStdString());
|
||||
RsGxsIdGroupItem* item = new RsGxsIdGroupItem();
|
||||
|
||||
item->fromGxsIdGroup(group,false) ;
|
||||
RsGxsId id(group.mMeta.mGroupId);
|
||||
|
||||
#ifdef DEBUG_IDS
|
||||
std::cerr << "p3IdService::deleteGroup() Deleting RsGxsId: " << id;
|
||||
std::cerr << std::endl;
|
||||
#endif
|
||||
|
||||
RsGenExchange::deleteGroup(token, item);
|
||||
RsGenExchange::deleteGroup(token,group.mMeta.mGroupId);
|
||||
|
||||
// if its in the cache - clear it.
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user