commit | 16f8d4ebf0fd4847fa83d9c61f4150273cb4f533 | [log] [tgz] |
---|---|---|
author | Rich Salz <rsalz@akamai.com> | Mon May 04 18:00:15 2015 -0400 |
committer | Rich Salz <rsalz@openssl.org> | Tue May 05 22:18:59 2015 -0400 |
tree | 3c30094cad38433c24008c30efe3d93cf38d8ae9 | |
parent | 12048657a91b12e499d03ec9ff406b42aba67366 [diff] |
memset, memcpy, sizeof consistency fixes Just as with the OPENSSL_malloc calls, consistently use sizeof(*ptr) for memset and memcpy. Remove needless casts for those functions. For memset, replace alternative forms of zero with 0. Reviewed-by: Richard Levitte <levitte@openssl.org>