diff --git a/bazaar/SysExec/SysExec.cpp b/bazaar/SysExec/SysExec.cpp index 1fced6e2a..7510860d7 100644 --- a/bazaar/SysExec/SysExec.cpp +++ b/bazaar/SysExec/SysExec.cpp @@ -48,8 +48,8 @@ bool SysExec(String const &command, String const &args, const VectorMapargv = BuildArgs(GetFileName(command), args); + Bufferenvv = BuildEnv(Environ); // executes the command int result = 0; @@ -169,8 +169,8 @@ bool SysExec(String const &command, String const &args) bool SysStart(String const &command, String const &args, const VectorMap &Environ, intptr_t *pid) { // builds the arguments and the environment - char **argv = BuildArgs(GetFileName(command), args); - char **envv = BuildEnv(Environ); + Bufferargv = BuildArgs(GetFileName(command), args); + Bufferenvv = BuildEnv(Environ); // executes the command int result = 0;