]> arthur.barton.de Git - ngircd.git/commitdiff
fix embarassing fileptr leak
authorFlorian Westphal <fw@strlen.de>
Sat, 16 Sep 2006 12:22:09 +0000 (12:22 +0000)
committerFlorian Westphal <fw@strlen.de>
Sat, 16 Sep 2006 12:22:09 +0000 (12:22 +0000)
src/ngircd/irc-info.c

index 37afbd3c8da11e9fbf7fdc5e146dfe1a12d49abe..62b238eeabaa2b567c9f94fc316a208eaa823790 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: irc-info.c,v 1.33 2006/05/10 21:24:01 alex Exp $";
+static char UNUSED id[] = "$Id: irc-info.c,v 1.34 2006/09/16 12:22:09 fw Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -910,8 +910,10 @@ IRC_Show_MOTD( CLIENT *Client )
                return IRC_WriteStrClient( Client, ERR_NOMOTD_MSG, Client_ID( Client ) );
        }
 
-       if (!Show_MOTD_Start( Client ))
-               return DISCONNECTED;
+       if (!Show_MOTD_Start( Client )) {
+               fclose(fd);
+               return false;
+       }
 
        while (fgets( line, (int)sizeof line, fd )) {
                ngt_TrimLastChr( line, '\n');