Ticket #558: Fixed memory leak caused by cipher_type_self_test()

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@2141 74dad513-b988-da41-8d7b-12977e46ad98
diff --git a/third_party/srtp/crypto/cipher/cipher.c b/third_party/srtp/crypto/cipher/cipher.c
index 573c5e2..b5ef164 100644
--- a/third_party/srtp/crypto/cipher/cipher.c
+++ b/third_party/srtp/crypto/cipher/cipher.c
@@ -359,6 +359,8 @@
     }
         
   }
+

+  cipher_dealloc(c);

 
   return err_status_ok;
 }