Index: content/common/child_process_sandbox_support_impl_linux.cc |
diff --git a/content/common/child_process_sandbox_support_impl_linux.cc b/content/common/child_process_sandbox_support_impl_linux.cc |
index 692d4edfc04500e949c4cf06f0299e1e765834bd..6dd0725ac0789f6e59519861671bcbe69e301a89 100644 |
--- a/content/common/child_process_sandbox_support_impl_linux.cc |
+++ b/content/common/child_process_sandbox_support_impl_linux.cc |
@@ -83,6 +83,7 @@ int MakeSharedMemorySegmentViaIPC(size_t length, bool executable) { |
Pickle request; |
request.WriteInt(LinuxSandbox::METHOD_MAKE_SHARED_MEMORY_SEGMENT); |
request.WriteUInt32(length); |
+ request.WriteBool(executable); |
uint8_t reply_buf[10]; |
int result_fd; |
ssize_t result = UnixDomainSocket::SendRecvMsg(GetSandboxFD(), |