Changeset 5112:4411620e877b for imap/message.c
- Timestamp:
- 2007-04-10 16:07:53 (21 months ago)
- Branch:
- HEAD
- Files:
-
- 1 modified
-
imap/message.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
imap/message.c
r5098 r5112 120 120 121 121 #if USE_HCACHE 122 imap_hcache_open (idata); 123 122 124 if (idata->hcache && !msgbegin) 123 125 { … … 200 202 if (h.data) 201 203 imap_free_header_data ((void**) (void*) &h.data); 204 imap_hcache_close (idata); 202 205 fclose (fp); 203 206 return -1; … … 301 304 if (h.data) 302 305 imap_free_header_data ((void**) (void*) &h.data); 306 #if USE_HCACHE 307 imap_hcache_close (idata); 308 #endif 303 309 fclose (fp); 304 310 return -1; … … 330 336 mutt_hcache_store_raw (idata->hcache, "/UIDNEXT", &idata->uidnext, 331 337 sizeof (idata->uidnext), imap_hcache_keylen); 338 339 imap_hcache_close (idata); 332 340 #endif /* USE_HCACHE */ 333 341
