aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/md.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/md.c')
-rw-r--r--cipher/md.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cipher/md.c b/cipher/md.c
index de74c283e..b1274c63c 100644
--- a/cipher/md.c
+++ b/cipher/md.c
@@ -256,6 +256,7 @@ md_copy( MD_HANDLE a )
: m_alloc( sizeof *b );
memcpy( b, a, sizeof *a );
b->list = NULL;
+ b->debug = NULL;
/* and now copy the complete list of algorithms */
/* I know that the copied list is reversed, but that doesn't matter */
for( ar=a->list; ar; ar = ar->next ) {
@@ -270,7 +271,7 @@ md_copy( MD_HANDLE a )
/****************
- * Reset all contexts and discard any buffered stuuf. This may be used
+ * Reset all contexts and discard any buffered stuff. This may be used
* instead of a md_close(); md_open().
*/
void