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

Commit

Permalink
win: fix bug in fs__readlink
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Sep 8, 2011
1 parent 2d1c672 commit 0d373eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/win/fs.c
Expand Up @@ -589,7 +589,7 @@ void fs__readlink(uv_fs_t* req, const char* path) {
int result = -1;
BOOL rv;
HANDLE symlink;
void* buffer;
void* buffer = NULL;
DWORD bytes_returned;
REPARSE_DATA_BUFFER* reparse_data;
int utf8size;
Expand Down

0 comments on commit 0d373eb

Please sign in to comment.