diff ecc.c @ 1061:a64ef3c2b371

merge
author Matt Johnston <matt@ucc.asn.au>
date Sun, 01 Mar 2015 23:27:08 +0800
parents 063c38ea622b
children 750ec4ec4cbe
line wrap: on
line diff
--- a/ecc.c	Sun Mar 01 23:26:42 2015 +0800
+++ b/ecc.c	Sun Mar 01 23:27:08 2015 +0800
@@ -86,11 +86,6 @@
 {
 	mp_int *prime, *b, *t1, *t2;
 	int err;
-
-	prime = m_malloc(sizeof(mp_int));
-	b = m_malloc(sizeof(mp_int));
-	t1 = m_malloc(sizeof(mp_int));
-	t2 = m_malloc(sizeof(mp_int));
 	
 	m_mp_alloc_init_multi(&prime, &b, &t1, &t2, NULL);