Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[3.12] gh-109216: Fix possible memory leak in BUILD_MAP
  • Loading branch information
sobolevn committed Sep 12, 2023
commit b299cfa7443e573ea6a66fddf70c05e4aa2a0df3
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix possible memory leak in :opcode:`BUILD_MAP`.

3 changes: 0 additions & 3 deletions Python/bytecodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -1489,9 +1489,6 @@ dummy_func(
values, 2,
values+1, 2,
oparg);
if (map == NULL)
goto error;

DECREF_INPUTS();
ERROR_IF(map == NULL, error);
}
Expand Down
Loading