Skip to content

Commit

Permalink
Merge pull request #1638 from erikjohnston/main
Browse files Browse the repository at this point in the history
Fix memory leak when converting to u128 and i128
  • Loading branch information
messense authored May 26, 2021
2 parents 5523ad6 + a56f23d commit 49e67d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Support `EnvironmentError`, `IOError`, and `WindowsError` on PyPy. [#1533](https://github.com/PyO3/pyo3/pull/1533)
- Fix unneccessary rebuilds when cycling between `cargo check` and `cargo clippy` in a Python virtualenv. [#1557](https://github.com/PyO3/pyo3/pull/1557)
- Fix segfault when dereferencing `ffi::PyDateTimeAPI` without the GIL. [#1563](https://github.com/PyO3/pyo3/pull/1563)
- Fix memory leak when converting to u128 and i128. [#1638](https://github.com/PyO3/pyo3/pull/1638)

## [0.13.2] - 2021-02-12
### Packaging
Expand Down
1 change: 1 addition & 0 deletions src/types/num.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ mod fast_128bit_int_conversion {
1,
$is_signed,
);
ffi::Py_DECREF(num);
if ok == -1 {
Err(PyErr::fetch(ob.py()))
} else {
Expand Down

0 comments on commit 49e67d7

Please sign in to comment.