Browse Source

Issue #22218: Fix "comparison between signed and unsigned integers" warning in

Modules/_sqlite/cursor.c.
pull/9921/head
Victor Stinner 12 years ago
parent
commit
cfcde8ca40
  1. 2
      Modules/_sqlite/cursor.c

2
Modules/_sqlite/cursor.c

@ -46,7 +46,7 @@ static pysqlite_StatementKind detect_statement_type(const char* statement)
dst = buf;
*dst = 0;
while (Py_ISALPHA(*src) && dst - buf < sizeof(buf) - 2) {
while (Py_ISALPHA(*src) && (dst - buf) < ((Py_ssize_t)sizeof(buf) - 2)) {
*dst++ = Py_TOLOWER(*src++);
}

Loading…
Cancel
Save