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

Unified Diff: sigaction.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 | « securemem.h ('k') | socketcall.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sigaction.cc
===================================================================
--- sigaction.cc (revision 168)
+++ sigaction.cc (working copy)
@@ -140,8 +140,10 @@
return false;
}
SecureMem::sendSystemCall(*info, SecureMem::SEND_UNLOCKED,
- sigaction_req.signum, sigaction_req.action,
- sigaction_req.old_action, sigaction_req.sigsetsize);
+ sigaction_req.signum,
+ const_cast<SysCalls::kernel_sigaction*>(sigaction_req.action),
+ const_cast<SysCalls::kernel_sigaction*>(sigaction_req.old_action),
+ sigaction_req.sigsetsize);
return true;
}
« no previous file with comments | « securemem.h ('k') | socketcall.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698