Kaydet (Commit) 8fb67e03 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Fix signed/unsigned mismatch.

üst 5cd012b6
......@@ -1542,7 +1542,7 @@ static int _setup_ssl_threads(void) {
for (i = 0; i < _ssl_locks_count; i++) {
_ssl_locks[i] = PyThread_allocate_lock();
if (_ssl_locks[i] == NULL) {
int j;
unsigned int j;
for (j = 0; j < i; j++) {
PyThread_free_lock(_ssl_locks[j]);
}
......
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