From 16f8d4ebf0fd4847fa83d9c61f4150273cb4f533 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Mon, 4 May 2015 18:00:15 -0400 Subject: 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 --- crypto/LPdir_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/LPdir_unix.c') diff --git a/crypto/LPdir_unix.c b/crypto/LPdir_unix.c index 3a14da19b1..1428cd16c6 100644 --- a/crypto/LPdir_unix.c +++ b/crypto/LPdir_unix.c @@ -83,7 +83,7 @@ const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory) errno = ENOMEM; return 0; } - memset(*ctx, '\0', sizeof(**ctx)); + memset(*ctx, 0, sizeof(**ctx)); (*ctx)->dir = opendir(directory); if ((*ctx)->dir == NULL) { -- cgit v1.2.3