mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-30 03:21:34 -04:00
Merge pull request #465 from PhenomRetroShare/Fix_RsGxsNetService_handleRecvPublishKeys_grpMeta_NULL
Fix RsGxsNetService::handleRecvPublishKeys when grpMeta is NULL
This commit is contained in:
commit
600e2d6003
1 changed files with 4 additions and 0 deletions
|
@ -4827,6 +4827,10 @@ void RsGxsNetService::handleRecvPublishKeys(RsNxsGroupPublishKeyItem *item)
|
||||||
// update the publish keys in this group meta info
|
// update the publish keys in this group meta info
|
||||||
|
|
||||||
RsGxsGrpMetaData *grpMeta = grpMetaMap[item->grpId] ;
|
RsGxsGrpMetaData *grpMeta = grpMetaMap[item->grpId] ;
|
||||||
|
if (!grpMeta) {
|
||||||
|
std::cerr << "(EE) RsGxsNetService::handleRecvPublishKeys() grpMeta not found." << std::endl;
|
||||||
|
return ;
|
||||||
|
}
|
||||||
|
|
||||||
// Check that the keys correspond, and that FULL keys are supplied, etc.
|
// Check that the keys correspond, and that FULL keys are supplied, etc.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue