mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Made pqiStore accept packets even after deserialization error, so that it is retrocompatible (Patch from Phenom)
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6459 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
02f36b3bbb
commit
748f7db7a4
@ -411,10 +411,11 @@ bool pqiSSLstore::getEncryptedItems(std::list<RsItem* >& rsItemList)
|
||||
{
|
||||
RsItem* item;
|
||||
|
||||
while(NULL != (item = GetItem()))
|
||||
do
|
||||
{
|
||||
rsItemList.push_back(item);
|
||||
}
|
||||
if (NULL != (item = GetItem()))
|
||||
rsItemList.push_back(item);
|
||||
} while (enc_bio->isactive() && enc_bio->moretoread());
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user