Displaying 1 result from an estimated 1 matches for "dict_entry".
Did you mean:
bit_entry
2007 Dec 10
1
dict: Leaked a t_pop() call in I/O handler
...ing 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 && entry->refcount > 0);
if (--entry->refcount == 0) {
hash_remove(cache-...