Displaying 5 results from an estimated 5 matches for "pool_ref".
2012 Aug 07
4
pop3 proxying error
...st libthread_db library
"/lib/i386-linux-gnu/i686/cmov/libthread_db.so.1".
Core was generated by `dovecot/pop3-login -D'.
Program terminated with signal 11, Segmentation fault.
#0 settings_parser_dup (old_ctx=0x8783480, new_pool=0x632e6465) at
settings-parser.c:1742
1742 pool_ref(new_pool);
doveconf -n
# 2.1.9: /etc/dovecot/dovecot.conf
# OS: Linux 2.6.32.2-xxxx-std-ipv6-32 i686 Debian wheezy/sid
auth_cache_size = 4 k
auth_mechanisms = plain login
director_mail_servers = bb.bb.bb.bb cc.cc.cc.cc
director_servers = dd.dd.dd.dd aa.aa.aa.aa
log_timestamp = %Y-%m-%d %H:%M:...
2004 Aug 25
0
[PATCH] move highest_fd calculations to ioloop-select.c
...io->destroyed = TRUE;
- /* check if we removed the highest fd */
- if (io->fd == current_ioloop->highest_fd)
- update_highest_fd(current_ioloop);
-
io->fd = -1;
}
@@ -275,7 +248,6 @@ struct ioloop *io_loop_create(pool_t poo
ioloop = p_new(pool, struct ioloop, 1);
pool_ref(pool);
ioloop->pool = pool;
- ioloop->highest_fd = -1;
io_loop_handler_init(ioloop);
diff -urpNX /usr/share/dontdiff -x Makefile dovecot-1.0-test35.vanilla/src/lib/ioloop-select.c dovecot-1.0-test35/src/lib/ioloop-select.c
--- dovecot-1.0-test35.vanilla/src/lib/ioloop-select.c 2004-08...
2018 Feb 22
0
Auth SEGV on sparc64, alignment problem?
...i_zero(&input);
521 input.roots = set_roots;
522 input.module = "auth";
523 input.service = service;
524 if (master_service_settings_read(master_service, &input,
525 output_r, &error) < 0)
526 i_fatal("Error reading configuration: %s", error);
527
528 pool_ref(pool);
(gdb) p input
$1 = {roots = 0x27fbd8, config_path = 0x0, preserve_environment = false,
preserve_user = false, preserve_home = false, never_exec = false,
use_sysexits = false, parse_full_config = false, module = 0x16ad70 "auth",
service = 0x0, username = 0x0, local_ip = {family =...
2018 Feb 22
2
Auth SEGV on sparc64, alignment problem?
Fancy, while not fun. :-) But thanks, that does work. Doing that, n?ing over calls to strcmp, it failed:
passdbs_init () at passdb.c:313
313 passdb_register_module(&passdb_ldap);
(gdb)
passdb_register_module (iface=0x280120) at passdb.c:33
33 old_iface = passdb_interface_find(iface->name);
(gdb)
passdb_interface_find (name=0x16fe60 "ldap") at passdb.c:20
20
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...+ client_send_command_error(cmd, "Invalid arguments.");
+
+ return TRUE;
+}
+
+// initialize context for traversing the urlauth maze
+static struct urlfetch_context *
+urlfetch_init(struct client_command_context *cmd, const struct imap_arg *args)
+{
+ struct urlfetch_context *ufctx;
+
+ pool_ref(cmd->pool);
+ ufctx = p_new(cmd->pool, struct urlfetch_context, 1);
+ ufctx->pool = cmd->pool;
+ ufctx->cmd = cmd;
+ ufctx->urlfetch_args = args;
+
+ ufctx->response = str_new(ufctx->pool, 256);
+ str_append(ufctx->response, "* URLFETCH");
+
+ // resolve this ea...