diff options
author | randomdan <randomdan@localhost> | 2011-03-10 11:28:40 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-03-10 11:28:40 +0000 |
commit | e1d1deec6f741d99c650fdb42db2e51063448eaf (patch) | |
tree | 1b65592331ee6b7a2b3bc4e45e4774513bc0da9e | |
parent | Allow specifying all sorts of previously hardcoded things, most importantly p... (diff) | |
download | project2-e1d1deec6f741d99c650fdb42db2e51063448eaf.tar.bz2 project2-e1d1deec6f741d99c650fdb42db2e51063448eaf.tar.xz project2-e1d1deec6f741d99c650fdb42db2e51063448eaf.zip |
Fix surplus local pointers causing random crashes
-rw-r--r-- | project2/cgi/cgiAppEngine.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/project2/cgi/cgiAppEngine.h b/project2/cgi/cgiAppEngine.h index de9b95a..78f796f 100644 --- a/project2/cgi/cgiAppEngine.h +++ b/project2/cgi/cgiAppEngine.h @@ -110,7 +110,6 @@ class CgiApplicationEngine : public ApplicationEngine { virtual const Glib::ustring & getResponseStyle() const; private: static const Glib::ustring resp; - const CgiEnvironment * e; const XmlScriptParser::NotFound nf; }; @@ -138,7 +137,6 @@ class CgiApplicationEngine : public ApplicationEngine { virtual const Glib::ustring & getResponseStyle() const; private: static const Glib::ustring resp; - const CgiEnvironment * e; char * buf; std::string what; }; |