Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid stack overflow in native symbolification when debuginfod returns a file with MiniDebugInfo #639

Merged
merged 3 commits into from
Jun 28, 2024
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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.13.1
current_version = 1.13.2
commit = True
message =
Prepare for {new_version} release
Expand Down
15 changes: 15 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,21 @@ Changelog

.. towncrier release notes start

memray 1.13.2 (2024-06-27)
--------------------------

Bug Fixes
~~~~~~~~~

- Fix a bug that could in rare circumstances result in a stack overflow while processing native mode stacks. (#639)


Miscellaneous
~~~~~~~~~~~~~

- Upgrade our vendored copy of ``libbacktrace``, used for reporting native stacks, to the latest version. (#639)


memray 1.13.1 (2024-06-23)
--------------------------

Expand Down
1 change: 1 addition & 0 deletions src/memray/_memray/native_resolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,7 @@ SymbolResolver::getBacktraceState(InternedString interned_filename, uintptr_t ad
nullptr,
0,
address_start,
nullptr,
errorHandler,
&data,
&state->fileline_fn,
Expand Down
2 changes: 1 addition & 1 deletion src/memray/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.13.1"
__version__ = "1.13.2"
Loading
Loading