Remove an unneeded variable.

Found using Clang's static analyzer.
This commit is contained in:
Brett Cannon 2010-05-05 20:16:50 +00:00
parent 6f38175cbc
commit eb3fef59b9
1 changed files with 0 additions and 2 deletions

View File

@ -1761,7 +1761,6 @@ _PyObject_DebugMallocStats(void)
* will be living in full pools -- would be a shame to miss them.
*/
for (i = 0; i < maxarenas; ++i) {
uint poolsinarena;
uint j;
uptr base = arenas[i].address;
@ -1770,7 +1769,6 @@ _PyObject_DebugMallocStats(void)
continue;
narenas += 1;
poolsinarena = arenas[i].ntotalpools;
numfreepools += arenas[i].nfreepools;
/* round up to pool alignment */