Author: eadler
Date: Wed Jun 27 06:41:10 2012
New Revision: 237633
URL: http://svn.freebsd.org/changeset/base/237633

Log:
  MFC r237286, r237523:
        Don't close an uninitialized descriptor.
  
  PR:           bin/167302
  Approved by:  cperciva (implicit)

Modified:
  stable/7/lib/libc/gen/syslog.c
Directory Properties:
  stable/7/lib/libc/   (props changed)

Modified: stable/7/lib/libc/gen/syslog.c
==============================================================================
--- stable/7/lib/libc/gen/syslog.c      Wed Jun 27 06:40:59 2012        
(r237632)
+++ stable/7/lib/libc/gen/syslog.c      Wed Jun 27 06:41:10 2012        
(r237633)
@@ -413,8 +413,10 @@ void
 closelog(void)
 {
        THREAD_LOCK();
-       (void)_close(LogFile);
-       LogFile = -1;
+       if (LogFile != -1) {
+               (void)_close(LogFile);
+               LogFile = -1;
+       }
        LogTag = NULL;
        status = NOCONN;
        THREAD_UNLOCK();
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to