aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/assuan-pipe-server.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e651060..61b0034 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-21 Werner Koch <[email protected]>
+
+ * assuan-pipe-server.c (_assuan_release_context): Free CMDTBL.
+
2006-11-14 Werner Koch <[email protected]>
* libassuan.m4 (AM_CHECK_LIBASSUAN): New.
diff --git a/src/assuan-pipe-server.c b/src/assuan-pipe-server.c
index a19c88e..f885161 100644
--- a/src/assuan-pipe-server.c
+++ b/src/assuan-pipe-server.c
@@ -168,6 +168,7 @@ _assuan_release_context (assuan_context_t ctx)
{
xfree (ctx->hello_line);
xfree (ctx->okay_line);
+ xfree (ctx->cmdtbl);
xfree (ctx);
}
}