mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-07 22:02:32 -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
1 changed files with 4 additions and 3 deletions
|
@ -411,10 +411,11 @@ bool pqiSSLstore::getEncryptedItems(std::list<RsItem* >& rsItemList)
|
||||||
{
|
{
|
||||||
RsItem* item;
|
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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue