Fixed always true comparaison

This commit is contained in:
Federico Di Gregorio 2012-08-17 14:52:59 +02:00 committed by Daniele Varrazzo
parent cc951b5fbe
commit 64674787fd

View File

@ -224,9 +224,9 @@ typecast_array_scan(const char *str, Py_ssize_t strlength,
} }
else if (state == ASCAN_END) { else if (state == ASCAN_END) {
if (--stack_index < 0) if (stack_index == 0)
return -1; return -1;
array = stack[stack_index]; array = stack[--stack_index];
} }
else if (state == ASCAN_EOF) else if (state == ASCAN_EOF)