The source project of this merge request has been removed.
Fix leaked dtlscertificate in dtlsagent
This leak was caused by two issues:
-
dtlsdec creates a dtlscertificate object and passes it to the dtlsagent constructor, which takes a ref() itself, so I believe this caused the cert object to be left with two refs (possibly wrong? please review).
-
dtlsagent never actually released the cert so this would never be disposed.