artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f4def34
)
free->sshkey_free; ok djm@
author
markus
<markus@openbsd.org>
Mon, 12 Jan 2015 14:05:19 +0000
(14:05 +0000)
committer
markus
<markus@openbsd.org>
Mon, 12 Jan 2015 14:05:19 +0000
(14:05 +0000)
usr.bin/ssh/krl.c
patch
|
blob
|
history
diff --git
a/usr.bin/ssh/krl.c
b/usr.bin/ssh/krl.c
index
977535f
..
d3cbfd5
100644
(file)
--- a/
usr.bin/ssh/krl.c
+++ b/
usr.bin/ssh/krl.c
@@
-14,7
+14,7
@@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $OpenBSD: krl.c,v 1.2
2 2015/01/08 10:14:08 djm
Exp $ */
+/* $OpenBSD: krl.c,v 1.2
3 2015/01/12 14:05:19 markus
Exp $ */
#include <sys/types.h>
#include <sys/param.h>
@@
-367,7
+367,7
@@
plain_key_blob(const struct sshkey *key, u_char **blob, size_t *blen)
}
}
r = sshkey_to_blob(kcopy, blob, blen);
- free(kcopy);
+
sshkey_
free(kcopy);
return r;
}