]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - sshrsa.c
Further work on writing the manual
[PuTTY.git] / sshrsa.c
index bc23c43f47b20c86261948c95ec11b11328a7e6b..14cf09a6ba496213caf3e56e48df51f073dceaa1 100644 (file)
--- a/sshrsa.c
+++ b/sshrsa.c
@@ -169,5 +169,5 @@ void freersakey(struct RSAKey *key) {
     if (key->modulus) freebn(key->modulus);
     if (key->exponent) freebn(key->exponent);
     if (key->private_exponent) freebn(key->private_exponent);
-    if (key->comment) free(key->comment);
+    if (key->comment) sfree(key->comment);
 }