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: e4c1483b48c4
Choose a base ref
...
head repository: joyent/libuv
compare: db1dccb9ecd3
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Aug 9, 2013

  1. windows: fix uninitialized local variable warning

    Pass the user-returned buffer to the read calback. Fixes the following
    warning:
    
        src\win\tcp.c(439): warning C4700: uninitialized local variable
        'buf'
    bnoordhuis committed Aug 9, 2013
    Copy the full SHA
    85b92ad View commit details
    Browse the repository at this point in the history
  2. windows: fix missing return value warning

    Fixes the following warning:
    
        src\uv-common.c(476): warning C4715:
        'uv__getaddrinfo_translate_error' : not all control paths return
        a value
    
    The function never returns - the final statement is a call to abort() -
    but it seems MSVC's program flow analyzer is too weak to figure that
    out.
    bnoordhuis committed Aug 9, 2013
    Copy the full SHA
    db1dccb View commit details
    Browse the repository at this point in the history