From d59ce08811bf94111c2f442184cf7d1257ffae24 Mon Sep 17 00:00:00 2001 From: "mmcc@openbsd.org" Date: Thu, 10 Dec 2015 17:08:40 +0000 Subject: upstream commit Remove NULL-checks before free(). ok dtucker@ Upstream-ID: e3d3cb1ce900179906af36517b5eea0fb15e6ef8 --- ssh-dss.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ssh-dss.c') diff --git a/ssh-dss.c b/ssh-dss.c index 8ed19d84..254f2a39 100644 --- a/ssh-dss.c +++ b/ssh-dss.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-dss.c,v 1.32 2014/06/24 01:13:21 djm Exp $ */ +/* $OpenBSD: ssh-dss.c,v 1.33 2015/12/10 17:08:40 mmcc Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -211,8 +211,7 @@ ssh_dss_verify(const struct sshkey *key, DSA_SIG_free(sig); if (b != NULL) sshbuf_free(b); - if (ktype != NULL) - free(ktype); + free(ktype); if (sigblob != NULL) { explicit_bzero(sigblob, len); free(sigblob); -- cgit v1.2.1