gsasl-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS gsasl/lib/src


From: gsasl-commit
Subject: CVS gsasl/lib/src
Date: Sun, 31 Oct 2004 21:12:53 +0100

Update of /home/cvs/gsasl/lib/src
In directory dopio:/tmp/cvs-serv13698

Modified Files:
        xfinish.c 
Log Message:
Fix mem leaks.


--- /home/cvs/gsasl/lib/src/xfinish.c   2004/09/24 14:27:37     1.6
+++ /home/cvs/gsasl/lib/src/xfinish.c   2004/10/31 20:12:52     1.7
@@ -44,12 +44,33 @@
 
   if (sctx->anonymous_token)
     free (sctx->anonymous_token);
+
   if (sctx->authid)
     free (sctx->authid);
+
   if (sctx->authzid)
     free (sctx->authzid);
+
   if (sctx->password)
     free (sctx->password);
 
+  if (sctx->passcode)
+    free (sctx->passcode);
+
+  if (sctx->pin)
+    free (sctx->pin);
+
+  if (sctx->suggestedpin)
+    free (sctx->suggestedpin);
+
+  if (sctx->service)
+    free (sctx->service);
+
+  if (sctx->hostname)
+    free (sctx->hostname);
+
+  if (sctx->gssapi_display_name)
+    free (sctx->gssapi_display_name);
+
   free (sctx);
 }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]