| Index: mojo/edk/embedder/platform_channel_pair_win.cc
|
| diff --git a/mojo/edk/embedder/platform_channel_pair_win.cc b/mojo/edk/embedder/platform_channel_pair_win.cc
|
| index 1cafc4fea951d0bfca64ca7afdeaa43e9c3156d1..4804eed70d036c97f943b4c4b41f8bd317557dc0 100644
|
| --- a/mojo/edk/embedder/platform_channel_pair_win.cc
|
| +++ b/mojo/edk/embedder/platform_channel_pair_win.cc
|
| @@ -53,8 +53,8 @@ PlatformChannelPair::PlatformChannelPair() {
|
| const DWORD kFlags =
|
| SECURITY_SQOS_PRESENT | SECURITY_ANONYMOUS | FILE_FLAG_OVERLAPPED;
|
| // Allow the handle to be inherited by child processes.
|
| - SECURITY_ATTRIBUTES security_attributes = {sizeof(SECURITY_ATTRIBUTES),
|
| - nullptr, TRUE};
|
| + SECURITY_ATTRIBUTES security_attributes = {
|
| + sizeof(SECURITY_ATTRIBUTES), nullptr, TRUE};
|
| client_handle_.reset(
|
| PlatformHandle(CreateFileW(pipe_name.c_str(),
|
| kDesiredAccess,
|
|
|