Navigation Menu

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: 9d44d786ada6
Choose a base ref
...
head repository: joyent/libuv
compare: fe4f06261ef4
Choose a head ref
  • 5 commits
  • 2 files 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

Commits on Oct 5, 2013

  1. unix: revert recent FSEvent changes

    This commit reverts the following commits:
    
        983fa68 darwin: fix 10.6 build error in fsevents.c
        684e212 fsevents: use shared FSEventStream
        ea4cb77 fsevents: FSEvents is most likely not thread-safe
        9bae606 darwin: create fsevents thread on demand
    
    Several people have reported stability issues on OS X 10.8 and bus
    errors on the 10.9 developer preview.
    
    See also nodejs/node-v0.x-archive#6296 and nodejs/node-v0.x-archive#6251.
    bnoordhuis committed Oct 5, 2013
    20
    Copy the full SHA
    38df93c View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2013

  1. unix: fix non-synchronized access in signal.c

    Check the return value of uv__signal_lock(); don't mutate the signal
    watcher tree in the signal handler if we failed to acquire the lock.
    bnoordhuis committed Oct 18, 2013
    Copy the full SHA
    1800efc View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/v0.10'

    Conflicts:
    	include/uv-darwin.h
    	src/unix/fsevents.c
    	src/unix/process.c
    bnoordhuis committed Oct 18, 2013
    Copy the full SHA
    fe4f062 View commit details
    Browse the repository at this point in the history