Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(682)

Unified Diff: socketcall.cc

Issue 7326013: GCC 4.6 warnings cleanup (Closed) Base URL: http://seccompsandbox.googlecode.com/svn/trunk/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sigaction.cc ('k') | tests/test_syscalls.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: socketcall.cc
===================================================================
--- socketcall.cc (revision 168)
+++ socketcall.cc (working copy)
@@ -406,8 +406,8 @@
// Sending data on a connected socket is similar to calling write().
// Allow it.
SecureMem::sendSystemCall(*info, SecureMem::SEND_UNLOCKED, sendto_req.sockfd,
- sendto_req.buf, sendto_req.len,
- sendto_req.flags, sendto_req.to,
+ const_cast<void*>(sendto_req.buf), sendto_req.len,
+ sendto_req.flags, const_cast<void*>(sendto_req.to),
sendto_req.tolen);
return true;
}
@@ -425,7 +425,8 @@
SecureMem::sendSystemCall(*info, SecureMem::SEND_UNLOCKED,
setsockopt_req.sockfd,
setsockopt_req.level, setsockopt_req.optname,
- setsockopt_req.optval, setsockopt_req.optlen);
+ const_cast<void*>(setsockopt_req.optval),
+ setsockopt_req.optlen);
return true;
}
SecureMem::abandonSystemCall(*info, -EINVAL);
« no previous file with comments | « sigaction.cc ('k') | tests/test_syscalls.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698