]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Use Proc_Close() to remove no longer unused pipes to child processes
authorAlexander Barton <alex@barton.de>
Tue, 23 Aug 2011 10:32:05 +0000 (12:32 +0200)
committerAlexander Barton <alex@barton.de>
Tue, 23 Aug 2011 10:32:05 +0000 (12:32 +0200)
This removes spurious (but harmless) debug messages.

src/ngircd/conn.c
src/ngircd/irc-login.c
src/ngircd/proc.c

index 1a9ac47abcd55bc8d64f2b143ef550b2ae9dc6af..407da1a3b0837ac2bd99c16054175a4b4070e006 100644 (file)
@@ -2107,6 +2107,7 @@ cb_Connect_to_Server(int fd, UNUSED short events)
 
        /* Read result from pipe */
        len = Proc_Read(&Conf_Server[i].res_stat, dest_addrs, sizeof(dest_addrs));
+       Proc_Close(&Conf_Server[i].res_stat);
        if (len == 0) {
                /* Error resolving hostname: reset server structure */
                Conf_Server[i].conn_id = NONE;
@@ -2166,6 +2167,7 @@ cb_Read_Resolver_Result( int r_fd, UNUSED short events )
 
        /* Read result from pipe */
        len = Proc_Read(&My_Connections[i].proc_stat, readbuf, sizeof readbuf -1);
+       Proc_Close(&My_Connections[i].proc_stat);
        if (len == 0)
                return;
 
index edaefd61cfc119fbd26de3a26d55eb65bc0146d0..0577cd9c0a94877532d7d594a2bb780e62c96598 100644 (file)
@@ -1009,6 +1009,7 @@ cb_Read_Auth_Result(int r_fd, UNUSED short events)
 
        /* Read result from pipe */
        len = Proc_Read(proc, &result, sizeof(result));
+       Proc_Close(proc);
        if (len == 0)
                return;
 
index 2a5eda8304ea1c462612329118dbd698b00148c6..fd2df1d947c51a773a9447a04e159e4a15afd8a4 100644 (file)
@@ -138,13 +138,14 @@ Proc_Read(PROC_STAT *proc, void *buffer, size_t buflen)
                        return 0;
                Log(LOG_CRIT, "Can't read from child process %ld: %s",
                    proc->pid, strerror(errno));
+               Proc_Close(proc);
                bytes_read = 0;
+       } else if (bytes_read == 0) {
+               /* EOF: clean up */
+               LogDebug("Child process %ld: EOF reached, closing pipe.",
+                        proc->pid);
+               Proc_Close(proc);
        }
-#if DEBUG
-       else if (bytes_read == 0)
-               LogDebug("Can't read from child process %ld: EOF", proc->pid);
-#endif
-       Proc_InitStruct(proc);
        return (size_t)bytes_read;
 }