[Bug 38222] New: LLDB creates a new console at process launch on Windows

Bug ID 38222
Summary LLDB creates a new console at process launch on Windows
Product lldb
Version 6.0
Hardware PC
OS Windows NT
Status NEW
Severity enhancement
Priority P
Component All Bugs
Assignee lldb-dev@lists.llvm.org
Reporter kenji.koyanagi@gmail.com
CC llvm-bugs@lists.llvm.org

I think that CREATE_NEW_CONSOLE is unnecessary.

source/Host/windows/ProcessLauncherWindows.cpp: 75
- DWORD flags = CREATE_NEW_CONSOLE | CREATE_UNICODE_ENVIRONMENT;
+ DWORD flags = CREATE_UNICODE_ENVIRONMENT;