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/store/str_mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/store') diff --git a/crypto/store/str_mem.c b/crypto/store/str_mem.c index 632ada89ba..b14e28908c 100644 --- a/crypto/store/str_mem.c +++ b/crypto/store/str_mem.c @@ -252,7 +252,7 @@ static void *mem_list_start(STORE *s, STORE_OBJECT_TYPES type, STOREerr(STORE_F_MEM_LIST_START, ERR_R_MALLOC_FAILURE); return 0; } - memset(context, 0, sizeof(struct mem_ctx_st)); + memset(context, 0, sizeof(*context)); attribute_context = STORE_parse_attrs_start(attributes); if (!attribute_context) { -- cgit v1.2.3