1
1

wincng.c: fixed memleak in (block) cipher destructor

Этот коммит содержится в:
sbredahl 2015-05-06 09:20:54 +02:00 коммит произвёл Marc Hoersken
родитель 4383a39d83
Коммит 08fa27b628

@ -1766,6 +1766,10 @@ _libssh2_wincng_cipher_dtor(_libssh2_cipher_ctx *ctx)
_libssh2_wincng_safe_free(ctx->pbKeyObject, ctx->dwKeyObject);
ctx->pbKeyObject = NULL;
ctx->dwKeyObject = 0;
_libssh2_wincng_safe_free(ctx->pbIV, ctx->dwBlockLength);
ctx->pbIV = NULL;
ctx->dwBlockLength = 0;
}