]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - sshblowf.c
Add pscp to .cvsignore
[PuTTY.git] / sshblowf.c
index 6bbe7d2719c4386e6af16b4229760cd587fd3e82..ca04c09cf0dfd94ae7448c8b7c60c4269805ddb9 100644 (file)
@@ -478,13 +478,13 @@ static void blowfish_setkey(BlowfishContext * ctx,
 
 static void *blowfish_make_context(void)
 {
-    return smalloc(sizeof(BlowfishContext));
+    return snew(BlowfishContext);
 }
 
 static void *blowfish_ssh1_make_context(void)
 {
     /* In SSH1, need one key for each direction */
-    return smalloc(2*sizeof(BlowfishContext));
+    return snewn(2, BlowfishContext);
 }
 
 static void blowfish_free_context(void *handle)