Displaying 2 results from an estimated 2 matches for "client_kill_idl".
Did you mean:
client_kill_idle
2015 Jan 13
0
dovecot-2.2.15 process dovecot/imap segfaults when dict process has troubles
...it (user=0x7fb02b0ab400)
at last-login-plugin.c:46
#7 0x00007fb02ab820bf in mail_user_unref
(_user=_user at entry=0x7fb02b0bbdc8) at mail-user.c:163
#8 0x00007fb02ac1ee0d in client_default_destroy (client=0x7fb02b0bbd50,
reason=<optimized out>) at imap-client.c:284
#9 0x00007fb02ac29549 in client_kill_idle (client=0x7fb02b0bbd50) at
main.c:105
#10 0x00007fb02ac296a5 in client_kill_idle (client=0x7fb02b0bbd50) at
main.c:129
#11 imap_die () at main.c:121
#12 0x00007fb02aac661d in io_loop_call_io (io=0x7fb02b093ce0) at
ioloop.c:498
#13 0x00007fb02aac7a15 in io_loop_handler_run_internal
(ioloop=ioloop a...
2010 Jun 14
1
Patch to fix leak in imap_refresh_proctitle in beta[5, 6]
...*title;
if (!verbose_proctitle)
return;
+ title = str_new(default_pool, 128);
str_append_c(title, '[');
switch (imap_client_count) {
case 0:
@@ -72,6 +73,7 @@
}
str_append_c(title, ']');
process_title_set(str_c(title));
+ str_free(&title);
}
static void client_kill_idle(struct client *client)
And perhaps there should be a warning when data is allocated out of the primordial data stack (as opposed to a nested one)?