From 864f7a0ceb89bd28b842ec5e0d0ed6abf112be9c Mon Sep 17 00:00:00 2001 From: weidai Date: Mon, 13 Mar 2006 13:26:41 +0000 Subject: fix MSVC 2005 warnings git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@217 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- lubyrack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lubyrack.h') diff --git a/lubyrack.h b/lubyrack.h index c04fd91..424152a 100644 --- a/lubyrack.h +++ b/lubyrack.h @@ -84,7 +84,7 @@ class LR : public LR_Info, public BlockCipherDocumentation if (xorBlock) xorbuf(outBlock, xorBlock, this->buffer, 2*this->S); else - memcpy(outBlock, this->buffer, 2*this->S); + memcpy_s(outBlock, 2*this->S, this->buffer, 2*this->S); } }; -- cgit v1.2.1