drop corrupted config files instead of looping into them

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6706 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-09-07 12:49:36 +00:00
parent 9bec763c4b
commit eeb2dcaaf2

View File

@ -418,6 +418,9 @@ bool pqiSSLstore::getEncryptedItems(std::list<RsItem* >& rsItemList)
{ {
if (NULL != (item = GetItem())) if (NULL != (item = GetItem()))
rsItemList.push_back(item); rsItemList.push_back(item);
else
break ;
} while (enc_bio->isactive() && enc_bio->moretoread()); } while (enc_bio->isactive() && enc_bio->moretoread());
return true; return true;