X-Git-Url: https://git.kernelconcepts.de/?a=blobdiff_plain;f=crypto%2Fdeflate.c;h=cbc7a33a9600c2b1cb9e9bdc161f3586229b85d1;hb=b2034d474b7e1e8578bd5c2977024b51693269d9;hp=463dc859aa059d6e5f593e6db437e93025974c18;hpb=f341dddf1dadf64be309791f83d7904245f1261d;p=mv-sheeva.git diff --git a/crypto/deflate.c b/crypto/deflate.c index 463dc859aa0..cbc7a33a960 100644 --- a/crypto/deflate.c +++ b/crypto/deflate.c @@ -48,12 +48,11 @@ static int deflate_comp_init(struct deflate_ctx *ctx) int ret = 0; struct z_stream_s *stream = &ctx->comp_stream; - stream->workspace = vmalloc(zlib_deflate_workspacesize()); + stream->workspace = vzalloc(zlib_deflate_workspacesize()); if (!stream->workspace) { ret = -ENOMEM; goto out; } - memset(stream->workspace, 0, zlib_deflate_workspacesize()); ret = zlib_deflateInit2(stream, DEFLATE_DEF_LEVEL, Z_DEFLATED, -DEFLATE_DEF_WINBITS, DEFLATE_DEF_MEMLEVEL, Z_DEFAULT_STRATEGY);