From eeb2dcaaf2f65f6509dfcc40041fb44c5a923aae Mon Sep 17 00:00:00 2001 From: csoler Date: Sat, 7 Sep 2013 12:49:36 +0000 Subject: [PATCH] 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 --- libretroshare/src/pqi/pqistore.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libretroshare/src/pqi/pqistore.cc b/libretroshare/src/pqi/pqistore.cc index 35353e381..ddb3ce14a 100644 --- a/libretroshare/src/pqi/pqistore.cc +++ b/libretroshare/src/pqi/pqistore.cc @@ -418,6 +418,9 @@ bool pqiSSLstore::getEncryptedItems(std::list& rsItemList) { if (NULL != (item = GetItem())) rsItemList.push_back(item); + else + break ; + } while (enc_bio->isactive() && enc_bio->moretoread()); return true;