mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-12 16:09:37 -05:00
added missing checks for deserialisation success.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6190 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
c2150768db
commit
0f78719d7f
@ -881,11 +881,20 @@ bool RsGenExchange::getGroupData(const uint32_t &token, std::vector<RsGxsGrpItem
|
||||
RsTlvBinaryData& data = (*lit)->grp;
|
||||
RsItem* item = mSerialiser->deserialise(data.bin_data, &data.bin_len);
|
||||
|
||||
if(item != NULL)
|
||||
if(item)
|
||||
{
|
||||
RsGxsGrpItem* gItem = dynamic_cast<RsGxsGrpItem*>(item);
|
||||
gItem->meta = *((*lit)->metaData);
|
||||
grpItem.push_back(gItem);
|
||||
if (gItem)
|
||||
{
|
||||
gItem->meta = *((*lit)->metaData);
|
||||
grpItem.push_back(gItem);
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cerr << "RsGenExchange::getGroupData() deserialisation/dynamic_cast ERROR";
|
||||
std::cerr << std::endl;
|
||||
delete item;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -922,9 +931,26 @@ bool RsGenExchange::getMsgData(const uint32_t &token,
|
||||
|
||||
RsItem* item = mSerialiser->deserialise(msg->msg.bin_data,
|
||||
&msg->msg.bin_len);
|
||||
RsGxsMsgItem* mItem = dynamic_cast<RsGxsMsgItem*>(item);
|
||||
mItem->meta = *((*vit)->metaData); // get meta info from nxs msg
|
||||
gxsMsgItems.push_back(mItem);
|
||||
if (item)
|
||||
{
|
||||
RsGxsMsgItem* mItem = dynamic_cast<RsGxsMsgItem*>(item);
|
||||
if (mItem)
|
||||
{
|
||||
mItem->meta = *((*vit)->metaData); // get meta info from nxs msg
|
||||
gxsMsgItems.push_back(mItem);
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cerr << "RsGenExchange::getMsgData() deserialisation/dynamic_cast ERROR";
|
||||
std::cerr << std::endl;
|
||||
delete item;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cerr << "RsGenExchange::getMsgData() deserialisation ERROR";
|
||||
std::cerr << std::endl;
|
||||
}
|
||||
delete msg;
|
||||
}
|
||||
msgItems[grpId] = gxsMsgItems;
|
||||
@ -956,13 +982,27 @@ bool RsGenExchange::getMsgRelatedData(const uint32_t &token, GxsMsgRelatedDataMa
|
||||
|
||||
RsItem* item = mSerialiser->deserialise(msg->msg.bin_data,
|
||||
&msg->msg.bin_len);
|
||||
RsGxsMsgItem* mItem = dynamic_cast<RsGxsMsgItem*>(item);
|
||||
if (item)
|
||||
{
|
||||
RsGxsMsgItem* mItem = dynamic_cast<RsGxsMsgItem*>(item);
|
||||
|
||||
if(mItem != NULL)
|
||||
{
|
||||
mItem->meta = *((*vit)->metaData); // get meta info from nxs msg
|
||||
gxsMsgItems.push_back(mItem);
|
||||
}
|
||||
if (mItem)
|
||||
{
|
||||
mItem->meta = *((*vit)->metaData); // get meta info from nxs msg
|
||||
gxsMsgItems.push_back(mItem);
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cerr << "RsGenExchange::getMsgRelatedData() deserialisation/dynamic_cast ERROR";
|
||||
std::cerr << std::endl;
|
||||
delete item;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cerr << "RsGenExchange::getMsgRelatedData() deserialisation ERROR";
|
||||
std::cerr << std::endl;
|
||||
}
|
||||
delete msg;
|
||||
}
|
||||
msgItems[msgId] = gxsMsgItems;
|
||||
|
Loading…
Reference in New Issue
Block a user