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

Zip.Unix: don't hang when creating zip file from directory with named pipe. #85301

Merged
merged 4 commits into from
May 18, 2023

Commits on Apr 25, 2023

  1. Zip.Unix: don't hang when creating zip file from directory with named…

    … pipe.
    
    When we open the named pipe for reading, that call will block indefinitely
    when there is no writer to provide data.
    
    And if we manage to read data from a pipe, that data was probably meant
    for someone else.
    
    Rather than opening named pipes, throw an IOException indicating they
    are not supported.
    
    And like the named pipes, this also treat character devices,
    block devices, and sockets as unsupported types.
    tmds committed Apr 25, 2023
    Configuration menu
    Copy the full SHA
    7d62681 View commit details
    Browse the repository at this point in the history
  2. Skip test on browser.

    tmds committed Apr 25, 2023
    Configuration menu
    Copy the full SHA
    144a0b4 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2023

  1. Configuration menu
    Copy the full SHA
    5481802 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2023

  1. Skip tests on tvOS/iOS.

    tmds committed May 9, 2023
    Configuration menu
    Copy the full SHA
    bb5c8ed View commit details
    Browse the repository at this point in the history