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

Unified Diff: library.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 | « ipc.cc ('k') | madvise.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: library.cc
===================================================================
--- library.cc (revision 168)
+++ library.cc (working copy)
@@ -481,7 +481,6 @@
// the code. We will need to overwrite a couple of instructions and,
// of course, move these instructions somewhere else.
int startIdx = codeIdx;
- int endIdx = codeIdx;
int length = code[codeIdx].len;
for (int idx = codeIdx;
(idx = (idx + (sizeof(code) / sizeof(struct Code)) - 1) %
@@ -529,7 +528,6 @@
code[i].len = next - code[i].addr;
code[i].is_ip_relative = tmp_rm && (*tmp_rm & 0xC7) == 0x5;
if (!code[i].is_ip_relative && isSafeInsn(code[i].insn)) {
- endIdx = i;
length = next - code[startIdx].addr;
} else {
break;
« no previous file with comments | « ipc.cc ('k') | madvise.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698