projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f8d121
)
Add a comment for the added cast with explanation.
author
Tomas Mraz
<tmraz@fedoraproject.org>
Wed, 10 Aug 2016 13:21:32 +0000
(15:21 +0200)
committer
Matt Caswell
<matt@openssl.org>
Mon, 15 Aug 2016 22:30:45 +0000
(23:30 +0100)
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
engines/afalg/e_afalg.c
patch
|
blob
|
history
diff --git
a/engines/afalg/e_afalg.c
b/engines/afalg/e_afalg.c
index 456ffda9aae4f958cd8f98bf08cd89733ea04aed..1766230ce8f664be13920dae1f54c379e25e5f23 100644
(file)
--- a/
engines/afalg/e_afalg.c
+++ b/
engines/afalg/e_afalg.c
@@
-230,6
+230,10
@@
int afalg_fin_cipher_aio(afalg_aio *aio, int sfd, unsigned char *buf,
memset(cb, '\0', sizeof(*cb));
cb->aio_fildes = sfd;
cb->aio_lio_opcode = IOCB_CMD_PREAD;
+ /*
+ * The pointer has to be converted to unsigned value first to avoid
+ * sign extension on cast to 64 bit value
+ */
cb->aio_buf = (uint64_t)(unsigned long)buf;
cb->aio_offset = 0;
cb->aio_data = 0;