Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: joyent/libuv
base: 8c9cbee1b1fb
Choose a base ref
...
head repository: joyent/libuv
compare: 11d80117936b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 2, 2013

  1. unix: fix uv_spawn() NULL pointer deref on ENOMEM

    In the cleanup-after-error section of uv_spawn(), check that the pointer
    is non-NULL - we might end up in said section due to a malloc() failure.
    bnoordhuis committed Oct 2, 2013
    Copy the full SHA
    fc3a21f View commit details
    Browse the repository at this point in the history
  2. unix: don't close inherited fds on uv_spawn() fail

    The cleanup-after-error code path in uv_spawn() was closing file
    descriptors indiscriminately.  Only close file descriptors that we
    created ourselves, not the ones that are passed in by the user.
    
    Fixes nodejs/node-v0.x-archive#6297.
    bnoordhuis committed Oct 2, 2013
    Copy the full SHA
    11d8011 View commit details
    Browse the repository at this point in the history