Skip to content

Commit

Permalink
Remove autogenerated unchecked call to new (#1658)
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Corry authored Jun 15, 2023
1 parent 8ce3a4b commit a66cb31
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,13 @@ jobs:
if: matrix.shard == 1 && runner.os != 'Windows'
with:
python-version: '3.10'
cache: 'pip'

- name: Set up Python - Windows
uses: actions/setup-python@v4
if: matrix.shard == 1 && runner.os == 'Windows'
with:
# Use 3.8 since that version still works on Windows 7.
python-version: '3.8'
cache: 'pip'

- name: Setup compilation env
shell: bash
Expand Down
1 change: 1 addition & 0 deletions src/resources/tcp_esp32.cc
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ PRIMITIVE(listen) {
Process*, process);

return resource_group->event_source()->call_on_thread([&]() -> Object* {
Process* process = capture.process;
tcp_pcb* tpcb = tcp_new();
if (tpcb == null) {
delete capture.socket;
Expand Down

0 comments on commit a66cb31

Please sign in to comment.