diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-12-20 17:26:09 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-12-20 17:26:09 +0100 |
commit | ffadee038f5887f3ca427740140ddbfb4457e660 (patch) | |
tree | 9b098b9ec8f2308f66ca5f9fb6583fd6d5cefb7d /sal | |
parent | c4b7d96f390026b505881955a428a9df18093803 (diff) |
Don't malloc between for and exec
...at least macOS doesn't like that; change from OSL_TRACE (effectively doing
nothing unless running a debug build with SAL_LOG=+INFO) to SAL_INFO (calling
std::stringstream -> malloc in debug builds, regardless of SAL_LOG env var) in
a005fbeddc4e615cfff56a9bd84355f8d42c1c8c "OSL_TRACE->SAL in framework..sal" made
the mistake obvious.
Change-Id: I43d35524a0861998a1ef58c6f448085a2fb01cd5
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/process.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sal/osl/unx/process.cxx b/sal/osl/unx/process.cxx index 21b24d380049..e43a1c478fd4 100644 --- a/sal/osl/unx/process.cxx +++ b/sal/osl/unx/process.cxx @@ -205,8 +205,6 @@ static void ChildStatusProc(void *pData) } } - SAL_INFO("sal.osl", "ChildStatusProc : starting " << data.m_pszArgs[0]); - /* Connect std IO to pipe ends */ /* Write end of stdInput not used in child process */ |