Skip to content
Prev Previous commit
Next Next commit
Free the lock.
  • Loading branch information
ericsnowcurrently committed Oct 16, 2023
commit 202f700401485c378ee2b02a187536640c1bffac
2 changes: 1 addition & 1 deletion Modules/_xxinterpchannelsmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1679,7 +1679,7 @@ _channel_send_wait(_channels *channels, int64_t cid, PyObject *obj)
res = 0;

finally:
// XXX Delete the lock.
PyThread_free_lock(mutex);
return res;
}

Expand Down