fixed mismatched free/delete[]

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7319 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2014-05-02 12:21:05 +00:00
parent eed4dc54ab
commit 228ea43455

View File

@ -159,7 +159,7 @@ HashCache::HashCache(const std::string& path)
std::string s((char *)decrypted_data,decrypted_data_size) ;
f = new std::istringstream(s) ;
free(decrypted_data) ;
delete[] decrypted_data ;
}
else
{