Fix dereferencing for the mutt_hcache_close calls. Use hcache_t* instead of evil...
authorCyril Brulebois <cyril.brulebois@enst-bretagne.fr>
Wed, 7 Nov 2007 18:52:45 +0000 (19:52 +0100)
committerPierre Habouzit <madcoder@debian.org>
Wed, 7 Nov 2007 18:54:34 +0000 (19:54 +0100)
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>
lib-mx/mh.c

index 3e1952b..dacef77 100644 (file)
@@ -1229,7 +1229,7 @@ static int mh_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)),
   int i, j;
 
 #ifdef USE_HCACHE
-  void *hc = NULL;
+  hcache_t *hc = NULL;
 #endif /* USE_HCACHE */
 
   if (ctx->magic == M_MH)
@@ -1286,7 +1286,7 @@ static int mh_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)),
 
 #ifdef USE_HCACHE
   if (ctx->magic == M_MAILDIR)
-    mutt_hcache_close (hc);
+    mutt_hcache_close (&hc);
 #endif /* USE_HCACHE */
 
   if (ctx->magic == M_MH)
@@ -1311,7 +1311,7 @@ static int mh_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)),
 err:
 #ifdef USE_HCACHE
   if (ctx->magic == M_MAILDIR)
-    mutt_hcache_close (hc);
+    mutt_hcache_close (&hc);
 #endif /* USE_HCACHE */
   return -1;
 }