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-1624-g23c47c8
Date: Fri, 31 May 2013 18:01:36 +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  23c47c8f5904f8543932b89b8165d4f16b810cac (commit)
      from  e2b2770f27e08372472d988c41d37299e7d5e7c2 (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=23c47c8f5904f8543932b89b8165d4f16b810cac


commit 23c47c8f5904f8543932b89b8165d4f16b810cac
Author: David Binderman <address@hidden>
Date:   Fri May 31 12:01:43 2013 -0600

    fix one more occurance

diff --git a/cygnal/proc.cpp b/cygnal/proc.cpp
index 1a05157..f36fa43 100644
--- a/cygnal/proc.cpp
+++ b/cygnal/proc.cpp
@@ -122,7 +122,7 @@ Proc::startCGI(const string &filespec, bool outflag, 
boost::uint16_t port)
     }
 
     // setup a command line. By default, argv[0] is the name of the process
-    cmd_line[0] = new char(filespec.size()+1);
+    cmd_line[0] = new char[filespec.size()+1];
     strcpy(cmd_line[0], filespec.c_str());
 
     // If the parent has verbosity on, chances are the child should too.

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

Summary of changes:
 cygnal/proc.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]