summaryrefslogtreecommitdiff
path: root/ssh-dss.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-11-12 11:03:35 +1100
committerDamien Miller <djm@mindrot.org>2001-11-12 11:03:35 +1100
commit36e603db86fbdc7a4f241efd7184dbfee263b701 (patch)
tree658713b3331af469e6d86c1616580c31065e6801 /ssh-dss.c
parent9af8c3c226b591f6cbb93eefcf2d56c9ddb3a682 (diff)
- markus@cvs.openbsd.org 2001/11/07 22:10:28
[ssh-dss.c ssh-rsa.c] missing free and sync dss/rsa code.
Diffstat (limited to 'ssh-dss.c')
-rw-r--r--ssh-dss.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/ssh-dss.c b/ssh-dss.c
index 22fffa02a..9f3a28706 100644
--- a/ssh-dss.c
+++ b/ssh-dss.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: ssh-dss.c,v 1.8 2001/09/17 19:27:15 stevesk Exp $"); 26RCSID("$OpenBSD: ssh-dss.c,v 1.9 2001/11/07 22:10:28 markus Exp $");
27 27
28#include <openssl/bn.h> 28#include <openssl/bn.h>
29#include <openssl/evp.h> 29#include <openssl/evp.h>
@@ -138,17 +138,19 @@ ssh_dss_verify(
138 if (strcmp("ssh-dss", ktype) != 0) { 138 if (strcmp("ssh-dss", ktype) != 0) {
139 error("ssh_dss_verify: cannot handle type %s", ktype); 139 error("ssh_dss_verify: cannot handle type %s", ktype);
140 buffer_free(&b); 140 buffer_free(&b);
141 xfree(ktype);
141 return -1; 142 return -1;
142 } 143 }
144 xfree(ktype);
143 sigblob = buffer_get_string(&b, &len); 145 sigblob = buffer_get_string(&b, &len);
144 rlen = buffer_len(&b); 146 rlen = buffer_len(&b);
147 buffer_free(&b);
145 if(rlen != 0) { 148 if(rlen != 0) {
146 error("remaining bytes in signature %d", rlen); 149 error("ssh_dss_verify: "
147 buffer_free(&b); 150 "remaining bytes in signature %d", rlen);
151 xfree(sigblob);
148 return -1; 152 return -1;
149 } 153 }
150 buffer_free(&b);
151 xfree(ktype);
152 } 154 }
153 155
154 if (len != SIGBLOB_LEN) { 156 if (len != SIGBLOB_LEN) {