Commit eb3fef59 authored by Brett Cannon's avatar Brett Cannon

Remove an unneeded variable.

Found using Clang's static analyzer.
parent 6f38175c
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment