Skip to content

Commit

Permalink
imap,pop3: Properly terminate logout tab.
Browse files Browse the repository at this point in the history
Fixes Fatal: master: service(imap): child killed with signal 11

Broken in e0a42ca and
1ecc087
  • Loading branch information
cmouse authored and mrannanj committed Feb 6, 2018
1 parent 98560e4 commit 1e45ebe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/imap/imap-client.c
Expand Up @@ -266,6 +266,7 @@ const char *client_stats(struct client *client)
{ '\0', dec2str(client->trashed_count), "trashed" },
{ '\0', dec2str(client->autoexpunged_count), "autoexpunged" },
{ '\0', dec2str(client->append_count), "appended" },
{ '\0', NULL, NULL }
};
const struct var_expand_table *user_tab =
mail_user_var_expand_table(client->user);
Expand Down
1 change: 1 addition & 0 deletions src/pop3/pop3-client.c
Expand Up @@ -539,6 +539,7 @@ static const char *client_stats(struct client *client)
{ '\0', client->session_id, "session" },
{ 'd', !client->delete_success ? "0" :
dec2str(client->deleted_size), "deleted_bytes" },
{ '\0', NULL, NULL }
};
const struct var_expand_table *user_tab =
mail_user_var_expand_table(client->user);
Expand Down

0 comments on commit 1e45ebe

Please sign in to comment.