diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-12-29 17:55:10 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-12-29 17:55:10 +0000 |
commit | 859f99845ebd1653048e69c02c8e392e7bf096f4 (patch) | |
tree | b8147db2ecb6cf92c18ca2d6ccd9fa605bca160c /libs | |
parent | 74630d681464a8c351c2c5393e336df3c918dd6d (diff) |
libs/nixio: fix uninitialized variable warning on Darwin in splice.c
Diffstat (limited to 'libs')
-rw-r--r-- | libs/nixio/src/splice.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/nixio/src/splice.c b/libs/nixio/src/splice.c index 38a45c22a..db63ea9a8 100644 --- a/libs/nixio/src/splice.c +++ b/libs/nixio/src/splice.c @@ -145,6 +145,7 @@ static int nixio_sendfile(lua_State *L) { do { #ifdef __DARWIN__ r = sendfile(infd, sock, offset, (off_t *)&len, NULL, 0); + spliced = r; #else r = sendfile(infd, sock, offset, len, NULL, &spliced, 0); #endif |