ph10 2006/09/22 09:41:59 BST
Modified files:
exim-doc/doc-txt ChangeLog
exim-src/src spool_mbox.c
Log:
Apply patch to fix bug introduced by the last patch to spool_mbox.c
(from Nico Erfurth).
Revision Changes Path
1.396 +2 -1 exim/exim-doc/doc-txt/ChangeLog
1.13 +3 -0 exim/exim-src/src/spool_mbox.c
Index: ChangeLog
===================================================================
RCS file: /home/cvs/exim/exim-doc/doc-txt/ChangeLog,v
retrieving revision 1.395
retrieving revision 1.396
diff -u -r1.395 -r1.396
--- ChangeLog 19 Sep 2006 20:01:13 -0000 1.395
+++ ChangeLog 22 Sep 2006 08:41:59 -0000 1.396
@@ -1,4 +1,4 @@
-$Cambridge: exim/exim-doc/doc-txt/ChangeLog,v 1.395 2006/09/19 20:01:13 jetmore Exp $
+$Cambridge: exim/exim-doc/doc-txt/ChangeLog,v 1.396 2006/09/22 08:41:59 ph10 Exp $
Change log file for Exim from version 4.21
-------------------------------------------
@@ -34,7 +34,8 @@
PH/04 Applied Nico Erfurth's refactoring patch to tidy up mime.c
(quoted-printable decoding).
-PH/05 Applied Nico Efrurth's refactoring patch to tidy up spool_mbox.c.
+PH/05 Applied Nico Efrurth's refactoring patch to tidy up spool_mbox.c, and
+ later the small subsequent patch to fix an introduced bug.
PH/06 Installed the latest Cygwin Makefile from the Cygwin maintainer.
Index: spool_mbox.c
===================================================================
RCS file: /home/cvs/exim/exim-src/src/spool_mbox.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- spool_mbox.c 12 Sep 2006 10:35:56 -0000 1.12
+++ spool_mbox.c 22 Sep 2006 08:41:59 -0000 1.13
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/exim-src/src/spool_mbox.c,v 1.12 2006/09/12 10:35:56 ph10 Exp $ */
+/* $Cambridge: exim/exim-src/src/spool_mbox.c,v 1.13 2006/09/22 08:41:59 ph10 Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -139,6 +139,9 @@
};
};
} while (j > 0);
+
+ (void)fclose(mbox_file);
+ mbox_file = NULL;
Ustrcpy(spooled_message_id, message_id);
spool_mbox_ok = 1;