aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2017-09-15 07:52:32 +1000
committerPauli <paul.dale@oracle.com>2017-09-15 07:52:32 +1000
commit6ffaf15d2363e782c6feeb8285a570986d03dd99 (patch)
treef830cd1617479f2ac187d47b3426cbc21c4b71fa /crypto
parent297002a332302a102a9fd802012f12ba2ad056c1 (diff)
downloadopenssl-6ffaf15d2363e782c6feeb8285a570986d03dd99.zip
openssl-6ffaf15d2363e782c6feeb8285a570986d03dd99.tar.gz
openssl-6ffaf15d2363e782c6feeb8285a570986d03dd99.tar.bz2
Remote unrequited casts
Also use strndup instead of a malloc/memcpy pair. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4372)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/x509/by_dir.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/crypto/x509/by_dir.c b/crypto/x509/by_dir.c
index e1a09cb..03492ac 100644
--- a/crypto/x509/by_dir.c
+++ b/crypto/x509/by_dir.c
@@ -170,8 +170,7 @@ static int add_cert_dir(BY_DIR *ctx, const char *dir, int type)
continue;
for (j = 0; j < sk_BY_DIR_ENTRY_num(ctx->dirs); j++) {
ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
- if (strlen(ent->dir) == (size_t)len &&
- strncmp(ent->dir, ss, (unsigned int)len) == 0)
+ if (strlen(ent->dir) == len && strncmp(ent->dir, ss, len) == 0)
break;
}
if (j < sk_BY_DIR_ENTRY_num(ctx->dirs))
@@ -188,13 +187,11 @@ static int add_cert_dir(BY_DIR *ctx, const char *dir, int type)
return 0;
ent->dir_type = type;
ent->hashes = sk_BY_DIR_HASH_new(by_dir_hash_cmp);
- ent->dir = OPENSSL_malloc((unsigned int)len + 1);
+ ent->dir = OPENSSL_strndup(ss, len);
if (ent->dir == NULL || ent->hashes == NULL) {
by_dir_entry_free(ent);
return 0;
}
- strncpy(ent->dir, ss, (unsigned int)len);
- ent->dir[len] = '\0';
if (!sk_BY_DIR_ENTRY_push(ctx->dirs, ent)) {
by_dir_entry_free(ent);
return 0;