[BACK]Return to digest-openssl.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/digest-openssl.c between version 1.1 and 1.2

version 1.1, 2014/01/28 20:13:46 version 1.2, 2014/02/02 03:44:31
Line 134 
Line 134 
 {  {
         if (ctx != NULL) {          if (ctx != NULL) {
                 EVP_MD_CTX_cleanup(&ctx->mdctx);                  EVP_MD_CTX_cleanup(&ctx->mdctx);
                 memset(ctx, 0, sizeof(*ctx));                  explicit_bzero(ctx, sizeof(*ctx));
                 free(ctx);                  free(ctx);
         }          }
 }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2