summaryrefslogtreecommitdiff
path: root/beecrypt/blockpad.c
diff options
context:
space:
mode:
Diffstat (limited to 'beecrypt/blockpad.c')
-rw-r--r--beecrypt/blockpad.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/beecrypt/blockpad.c b/beecrypt/blockpad.c
index 22a6a1085..a6637ec34 100644
--- a/beecrypt/blockpad.c
+++ b/beecrypt/blockpad.c
@@ -46,6 +46,7 @@ memchunk* pkcs5Pad(int blockbytes, memchunk* tmp)
}
/*@=boundswrite@*/
+/*@-boundsread@*/
memchunk* pkcs5Unpad(int blockbytes, memchunk* tmp)
{
if (tmp)
@@ -73,6 +74,7 @@ memchunk* pkcs5Unpad(int blockbytes, memchunk* tmp)
return tmp;
/*@=temptrans@*/
}
+/*@=boundsread@*/
/*@-boundswrite@*/
memchunk* pkcs5PadCopy(int blockbytes, const memchunk* src)