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

[3.10] gh-97897: Prevent os.mkfifo and os.mknod segfaults with macOS 13 SDK (GH-97944) #97967

Merged
merged 1 commit into from
Oct 6, 2022

Commits on Oct 6, 2022

  1. pythongh-97897: Prevent os.mkfifo and os.mknod segfaults with macOS 1…

    …3 SDK (pythonGH-97944)
    
    The macOS 13 SDK includes support for the `mkfifoat` and `mknodat` system calls.
     Using the `dir_fd` option with either `os.mkfifo` or `os.mknod` could result in a
     segfault if cpython is built with the macOS 13 SDK but run on an earlier
     version of macOS. Prevent this by adding runtime support for detection of
     these system calls ("weaklinking") as is done for other newer syscalls on
     macOS.
    (cherry picked from commit 6d0a019)
    
    Co-authored-by: Ned Deily <nad@python.org>
    ned-deily authored and miss-islington committed Oct 6, 2022
    Configuration menu
    Copy the full SHA
    989a5a6 View commit details
    Browse the repository at this point in the history