cryptopp/TestScripts
Jeffrey Walton afe391571b
Make Singleton<Integer> static with function scope (Issue 310)
This may not fix the issue. Drilling into the issue from the web-based dashboard, Coverity is targeting:

    1. noescape: CryptoPP::Integer::operator =(CryptoPP::Integer const &) does not free or save its parameter t.

3049 Integer& Integer::operator=(const Integer& t)
3050 {
3051   if (this != &t)
3052   {
3053     if (reg.size() != t.reg.size() || t.reg[t.reg.size()/2] == 0)
3054       reg.New(RoundupSize(t.WordCount()));
3055     CopyWords(reg, t.reg, reg.size());
3056     sign = t.sign;
3057   }
3058   return *this;
3059 }
2016-09-29 14:31:54 -04:00
..
coverity-linux.txt Make Singleton<Integer> static with function scope (Issue 310) 2016-09-29 14:31:54 -04:00
coverity-windows.txt Add Coverity modeling file 2016-09-29 13:09:10 -04:00
cryptest-android.sh Organize test scripts (Issue 303) 2016-09-23 12:04:33 -04:00
cryptest-coverity.cpp Add Coverity modeling file 2016-09-29 13:09:10 -04:00
cryptest-ios.sh Organize test scripts (Issue 303) 2016-09-23 11:32:48 -04:00
cryptest.sh Fixed typo in cryptest.sh 2016-09-23 23:22:11 -04:00
master-merge.sh Updated 2016-09-27 19:34:46 -04:00