Remove memory leak in PKCS#5 self test
diff --git a/library/pkcs5.c b/library/pkcs5.c
index a363529..7a30d78 100644
--- a/library/pkcs5.c
+++ b/library/pkcs5.c
@@ -366,6 +366,8 @@
 
     printf( "\n" );
 
+    md_free_ctx( &sha1_ctx );
+
     return( 0 );
 }