Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

### Fixed
* Declared `f_ndim` as a C `int` in `_allocate_result` so the buffer size is computed in C rather than through a Python object, resolving a Coverity out-of-bounds (OVERRUN) false positive [gh-364](https://github.com/IntelPython/mkl_fft/pull/364)

## [2.3.2] - 2026-08-04

Expand Down
1 change: 1 addition & 0 deletions mkl_fft/_pydfti.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ cdef cnp.ndarray _allocate_result(
cdef cnp.npy_intp *f_shape
cdef cnp.ndarray f_arr "ff_arrayObject"
cdef int x_arr_is_fortran
cdef int f_ndim

f_ndim = cnp.PyArray_NDIM(x_arr)

Expand Down
Loading