Added reference to CVE-2016-7544 (Issue 302)

pull/308/head
Jeffrey Walton 2016-09-23 11:36:52 -04:00
parent 01dbfc8151
commit 193983c620
1 changed files with 1 additions and 1 deletions

View File

@ -1254,7 +1254,7 @@ size_t Rijndael::Enc::AdvancedProcessBlocks(const byte *inBlocks, const byte *xo
do {
// Microsoft C&A violation, http://msdn.microsoft.com/en-us/library/5471dc8s.aspx
// Also see http://github.com/weidai11/cryptopp/issues/302
// Also see http://github.com/weidai11/cryptopp/issues/302, CVE-2016-7544.
space = (byte *)alloca(255+sizeof(Locals));
space += (256-(size_t)space%256)%256;
}