windows: fix memory leak in fs__sendfile

This commit is contained in:
Shannen Saez 2013-04-10 14:15:13 +02:00 committed by Bert Belder
parent e1ffc6c0ee
commit 7570a35b70

View File

@ -1048,6 +1048,8 @@ static void fs__sendfile(uv_fs_t* req) {
}
}
free(buf);
SET_REQ_RESULT(req, result);
}