Displaying 1 result from an estimated 1 matches for "dict_cache_unref".
2007 Dec 10
1
dict: Leaked a t_pop() call in I/O handler
...il service (I
love dovecot! :-), and I found this message "dict: Leaked a t_pop()
call in I/O handler (nil)" being logged each time I authenticate
against it via POP3 or IMAP.
Searching through the code, I've found this (this is Dovecot v1.0.8): 
---- src/dict/dict-cache.c ----
void dict_cache_unref(struct dict_cache *cache, const char *uri,
                      const char *username)
{
        struct dict_entry *entry;
        t_push();
        entry = hash_lookup(cache->dicts,
                            t_strdup_printf("%s\t%s", username, uri));
        i_assert(entry != NULL...