gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Rob Savoye
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1439-g342cc0e
Date: Sun, 11 Mar 2012 17:35:17 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  342cc0e9c94ae4b8df40392b87277f227faf703c (commit)
       via  b2e83be5822c46beb694d5a98cffabf132343e8f (commit)
      from  bb4dc77eecb6ed1b967e3ecbce3dac6c5e6f1527 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=342cc0e9c94ae4b8df40392b87277f227faf703c


commit 342cc0e9c94ae4b8df40392b87277f227faf703c
Merge: b2e83be bb4dc77
Author: Rob Savoye <address@hidden>
Date:   Sun Mar 11 11:35:04 2012 -0600

    Merge branch 'master' of git.sv.gnu.org:/srv/git/gnash


http://git.savannah.gnu.org/cgit//commit/?id=b2e83be5822c46beb694d5a98cffabf132343e8f


commit b2e83be5822c46beb694d5a98cffabf132343e8f
Author: Steve Grubb <address@hidden>
Date:   Sun Mar 11 11:34:28 2012 -0600

    fix descriptor leaks

diff --git a/gui/fb/fb.cpp b/gui/fb/fb.cpp
index 6c33630..f5020da 100644
--- a/gui/fb/fb.cpp
+++ b/gui/fb/fb.cpp
@@ -553,6 +553,7 @@ FBGui::disable_terminal()
     if (ioctl(fd, VT_GETSTATE, &vts) == -1) {
         log_error(_("Could not get current VT state"));
         close(_fd);
+        close(fd);
         return false;
     }
     
@@ -674,6 +675,7 @@ FBGui::enable_terminal()
     if (ioctl(fd, VT_ACTIVATE, _original_vt)) {
         log_error(_("Could not activate VT number %d"), _original_vt);
         close(_fd);
+        close(fd);
         return false;
     }
 

-----------------------------------------------------------------------

Summary of changes:
 gui/fb/fb.cpp |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]