summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--server/smartcard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/smartcard.c b/server/smartcard.c
index 1698a38d..9d72a7e3 100644
--- a/server/smartcard.c
+++ b/server/smartcard.c
@@ -322,10 +322,10 @@ static void smartcard_channel_send_item(RedChannel *channel, PipeItem *item)
static void smartcard_channel_release_pipe_item(RedChannel *channel, PipeItem *item, int item_pushed)
{
- free(item);
if (item->type == PIPE_ITEM_TYPE_MSG) {
free(((MsgItem*)item)->vheader);
}
+ free(item);
}
static void smartcard_channel_disconnect(RedChannel *channel)