1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 07:13:12 +02:00

Fix fd leak in mail.c with ForkForMail enabled

This commit is contained in:
Adam
2013-07-07 05:33:16 -04:00
parent 27dde3266c
commit 1dbd7b406f
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -239,7 +239,7 @@ void MailEnd(MailInfo * mail)
fclose(mail->readpipe);
_exit(EXIT_SUCCESS);
}
else if (pid < 0)
else
#endif
{
if (mail->pipe != mail->writepipe)
+2 -1
View File
@@ -8,9 +8,10 @@ VERSION_MAJOR="1"
VERSION_MINOR="8"
VERSION_PATCH="9"
VERSION_EXTRA="-git"
VERSION_BUILD="3117"
VERSION_BUILD="3118"
# Changes since 1.8.8 Release
#Revision 3118 - Fix fd leak in mail.c with ForkForMail enabled
#Revision 3117 - Updated Hybrid protocol module to support vhosts
#Revision 3116 - Bug #1527 - Fixed modules being loaded regardless of the load abort signal returned by a modules AnopeInit function. (Introduced in commit. e0c3069c)