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: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-317-gdb6cdea
Date: Wed, 27 Apr 2011 20:52:45 +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  db6cdea10cdf373cc74f8d8761845f29bc8c85c1 (commit)
      from  77da6838eed4e2d01e732887fb2c6a1bded05c1b (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=db6cdea10cdf373cc74f8d8761845f29bc8c85c1


commit db6cdea10cdf373cc74f8d8761845f29bc8c85c1
Author: Sandro Santilli <address@hidden>
Date:   Wed Apr 27 22:51:43 2011 +0200

    Do not try to write to a non-opened stream

diff --git a/gui/dump/dump.cpp b/gui/dump/dump.cpp
index 707dcfe..37c7429 100644
--- a/gui/dump/dump.cpp
+++ b/gui/dump/dump.cpp
@@ -263,7 +263,7 @@ DumpGui::createWindow(int width, int height)
 void
 DumpGui::writeFrame()
 {
-    if (!_fileStream) return;
+    if (! _fileStream.is_open() ) return;
 
     _fileStream.write(reinterpret_cast<char*>(_offscreenbuf.get()),
             _offscreenbuf_size);

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

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


hooks/post-receive
-- 
Gnash



reply via email to

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