Hop, envoyé avec madmutt en plus o/
(Oué faut que j'apprenne à me servir du truc pour envoyer les patches. :p)
--
Cyril Brulebois
From
da42d2d6850309997b209ffba4081da24463bb4f Mon Sep 17 00:00:00 2001
From: Cyril Brulebois <cyril.brulebois@enst-bretagne.fr>
Date: Wed, 7 Nov 2007 19:50:29 +0100
Subject: [PATCH] Fix dereferencing for the mutt_hcache_close calls. Use hcache_t* instead of evil-ish void*
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
int i, j;
#ifdef USE_HCACHE
- void *hc = NULL;
+ hcache_t *hc = NULL;
#endif /* USE_HCACHE */
if (ctx->magic == M_MH)
#ifdef USE_HCACHE
if (ctx->magic == M_MAILDIR)
- mutt_hcache_close (hc);
+ mutt_hcache_close (&hc);
#endif /* USE_HCACHE */
if (ctx->magic == M_MH)
err:
#ifdef USE_HCACHE
if (ctx->magic == M_MAILDIR)
- mutt_hcache_close (hc);
+ mutt_hcache_close (&hc);
#endif /* USE_HCACHE */
return -1;
}