diff options
author | Josh Gao <jmgao@google.com> | 2017-11-01 15:00:40 -0700 |
---|---|---|
committer | Josh Gao <jmgao@google.com> | 2017-11-03 16:57:56 -0700 |
commit | cdea750576bc439ba869bc7f4831dc6d27980086 (patch) | |
tree | 59455dc068bc5c8ce7bd5b90700c996f04204c39 /debuggerd/handler/debuggerd_handler.cpp | |
parent | f0da1c42a3edb40d09a6ea49fee05bb0d6d243fc (diff) |
crash_dump: don't inherit environment from parent.
Bug: http://b/68381717
Test: debuggerd_test
Change-Id: Ie1b342bc9901cb9ae9b79147899928a19052cbad
Diffstat (limited to 'debuggerd/handler/debuggerd_handler.cpp')
-rw-r--r-- | debuggerd/handler/debuggerd_handler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debuggerd/handler/debuggerd_handler.cpp b/debuggerd/handler/debuggerd_handler.cpp index d41dc67be..d6b6d58d8 100644 --- a/debuggerd/handler/debuggerd_handler.cpp +++ b/debuggerd/handler/debuggerd_handler.cpp @@ -330,8 +330,8 @@ static int debuggerd_dispatch_pseudothread(void* arg) { async_safe_format_buffer(debuggerd_dump_type, sizeof(debuggerd_dump_type), "%d", get_dump_type(thread_info)); - execl(CRASH_DUMP_PATH, CRASH_DUMP_NAME, main_tid, pseudothread_tid, debuggerd_dump_type, - nullptr); + execle(CRASH_DUMP_PATH, CRASH_DUMP_NAME, main_tid, pseudothread_tid, debuggerd_dump_type, + nullptr, nullptr); fatal_errno("exec failed"); } else { |