From: David McCullough Date: Wed, 15 Mar 2006 10:08:51 +0000 (+1100) Subject: [CRYPTO] aes: Fixed array boundary violation X-Git-Tag: v2.6.17-rc1~1174^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55e9dce37ddf3ab358ba1d1e9eef4ee4bd8174a6;p=pandora-kernel.git [CRYPTO] aes: Fixed array boundary violation The AES setkey routine writes 64 bytes to the E_KEY area even though there are only 60 bytes there. It is in fact safe since E_KEY is immediately follwed by D_KEY which is initialised afterwards. However, doing this may trigger undefined behaviour and makes Coverity unhappy. So by combining E_KEY and D_KEY into one array we sidestep this issue altogether. This problem was reported by Adrian Bunk. Signed-off-by: Herbert Xu --- Reading git-diff-tree failed