Add and use OPENSSL_zalloc
[openssl.git] / crypto / dso / dso_win32.c
index 2da318f70783dd8705c58c72aa0ef11a9c8b7e02..c6fec6625abf4e20bcd5d36deda9086906f29a76 100644 (file)
@@ -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] == '\\')