mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 15:25:35 +08:00
Use nullptr
This commit is contained in:
@@ -48,7 +48,7 @@ namespace BlackMisc
|
||||
std::array<WCHAR, MAX_PATH> wszCommandLine = {{}};
|
||||
command.toWCharArray(wszCommandLine.data());
|
||||
|
||||
int result = CreateProcess (nullptr, wszCommandLine.data(), 0, 0, inherit, flags, nullptr, nullptr, &startupInfo, &processInfo);
|
||||
int result = CreateProcess (nullptr, wszCommandLine.data(), nullptr, nullptr, inherit, flags, nullptr, nullptr, &startupInfo, &processInfo);
|
||||
|
||||
if (result == 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user