Rocco Rutte:
authorpdmef <pdmef@e385b8ad-14ed-0310-8656-cc95a2468c6d>
Fri, 28 Oct 2005 08:55:27 +0000 (08:55 +0000)
committerpdmef <pdmef@e385b8ad-14ed-0310-8656-cc95a2468c6d>
Fri, 28 Oct 2005 08:55:27 +0000 (08:55 +0000)
- s/free/mem_free/g

git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@563 e385b8ad-14ed-0310-8656-cc95a2468c6d

mutt_libesmtp.c
nntp/nntp.c

index 41da0e7..6263662 100644 (file)
@@ -397,7 +397,7 @@ Done:
   if (fp != NULL)
     fclose (fp);
   if (hostportstr != NULL)
-    free (hostportstr);
+    mem_free (&hostportstr);
   if (session != NULL)
     smtp_destroy_session (session);
   if (authctx != NULL)
index d0fae27..15f7d78 100644 (file)
@@ -941,7 +941,7 @@ int nntp_fetch_message (MESSAGE * msg, CONTEXT * ctx, int msgno)
 
   /* clear the previous entry */
   unlink (cache->path);
-  free (cache->path);
+  mem_free (&cache->path);
 
   cache->index = ctx->hdrs[msgno]->index;
   mutt_mktemp (path);