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. e4ce35ebbb0c5d3a92b8


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. e4ce35ebbb0c5d3a92b8de3e7c14915426f24fa0
Date: Mon, 06 Dec 2010 20:22:38 +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  e4ce35ebbb0c5d3a92b8de3e7c14915426f24fa0 (commit)
      from  277d8f08c1c7b02d156322ecc878d4dd1ad9e46e (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=e4ce35ebbb0c5d3a92b8de3e7c14915426f24fa0


commit e4ce35ebbb0c5d3a92b8de3e7c14915426f24fa0
Author: Sandro Santilli <address@hidden>
Date:   Mon Dec 6 21:21:41 2010 +0100

    Do not assume directories passed to mkdirRecursive have to be absolute. 
Fixes bug #31811.

diff --git a/libbase/GnashFileUtilities.cpp b/libbase/GnashFileUtilities.cpp
index aad6a69..53c184a 100644
--- a/libbase/GnashFileUtilities.cpp
+++ b/libbase/GnashFileUtilities.cpp
@@ -44,7 +44,7 @@ mkdirRecursive(const std::string& filename)
     typedef boost::tokenizer<boost::char_separator<char> > Tok;
     boost::char_separator<char> sep("/");
     Tok t(target, sep);
-    std::string newdir = "/";
+    std::string newdir;
 
     for (Tok::iterator tit = t.begin(); tit != t.end(); ++tit) {
 

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

Summary of changes:
 libbase/GnashFileUtilities.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]