summaryrefslogtreecommitdiffstats
path: root/bufbn.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2007-06-05 18:29:35 +1000
committerDarren Tucker <dtucker@zip.com.au>2007-06-05 18:29:35 +1000
commit7b21cb5bdc6d0e587f646397b6c6f6ef87505e0b (patch)
tree9f842f4b81f16e278cb36efed29fdaf87792b121 /bufbn.c
parenta394f9913c9e03579bfabda6487124878e194b2a (diff)
- djm@cvs.openbsd.org 2007/06/02 09:04:58
[bufbn.c] memory leak on error path; from arnaud.lacombe.1 AT ulaval.ca
Diffstat (limited to 'bufbn.c')
-rw-r--r--bufbn.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/bufbn.c b/bufbn.c
index ce8fba51..251cd095 100644
--- a/bufbn.c
+++ b/bufbn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bufbn.c,v 1.5 2007/02/14 14:32:00 stevesk Exp $*/
+/* $OpenBSD: bufbn.c,v 1.6 2007/06/02 09:04:58 djm Exp $*/
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -201,12 +201,14 @@ buffer_get_bignum2_ret(Buffer *buffer, BIGNUM *value)
return (-1);
}
if (len > 8 * 1024) {
- error("buffer_get_bignum2_ret: cannot handle BN of size %d", len);
+ error("buffer_get_bignum2_ret: cannot handle BN of size %d",
+ len);
xfree(bin);
return (-1);
}
if (BN_bin2bn(bin, len, value) == NULL) {
error("buffer_get_bignum2_ret: BN_bin2bn failed");
+ xfree(bin);
return (-1);
}
xfree(bin);