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

gh-99845: _PySys_GetSizeOf() uses size_t #99903

Closed
wants to merge 2 commits into from
Closed

gh-99845: _PySys_GetSizeOf() uses size_t #99903

wants to merge 2 commits into from

Conversation

vstinner
Copy link
Member

@vstinner vstinner commented Nov 30, 2022

The _PySys_GetSizeOf() function now uses an unsigned type (size_t) to compute the size, rather than a signed type (Py_ssize_t).

  • _PySys_GetSizeOf() now checks for integer overflow when adding the header size.
  • Reformat also _PySys_GetSizeOf().

The _PySys_GetSizeOf() function now uses an unsigned type (size_t) to
compute the size, rather than a signed type (Py_ssize_t).

* _PySys_GetSizeOf() now checks for integer overflow when adding the
  header size.
* Reformat also _PySys_GetSizeOf().
@vstinner vstinner closed this Dec 13, 2022
@vstinner vstinner deleted the sys_getsizeof branch December 13, 2022 15:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants