X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=crypto%2Fdso%2Fdso_win32.c;h=c6fec6625abf4e20bcd5d36deda9086906f29a76;hb=b51bce942023325e727ca4225252d06c49d8f2b7;hp=2da318f70783dd8705c58c72aa0ef11a9c8b7e02;hpb=66e87a9f0990198079bf4d2b3ce87581ad5b6b10;p=openssl.git diff --git a/crypto/dso/dso_win32.c b/crypto/dso/dso_win32.c index 2da318f707..c6fec6625a 100644 --- a/crypto/dso/dso_win32.c +++ b/crypto/dso/dso_win32.c @@ -304,13 +304,12 @@ static struct file_st *win32_splitter(DSO *dso, const char *filename, return (NULL); } - result = OPENSSL_malloc(sizeof(*result)); + result = OPENSSL_zalloc(sizeof(*result)); if (result == NULL) { DSOerr(DSO_F_WIN32_SPLITTER, ERR_R_MALLOC_FAILURE); return (NULL); } - memset(result, 0, sizeof(*result)); position = IN_DEVICE; if ((filename[0] == '\\' && filename[1] == '\\')