From 536d4d48bfc3e915be210988fa7d9f6433d875f2 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 18 Aug 2010 11:17:52 +0200 Subject: s3: Fix an uninitialized variable --- source3/lib/util_sock.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index 3bc60db61e..e9626f31fe 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -442,7 +442,6 @@ NTSTATUS read_fd_with_timeout(int fd, char *buf, ssize_t readret; size_t nread = 0; struct timeval timeout; - int save_errno; /* just checking .... */ if (maxcnt <= 0) @@ -464,7 +463,7 @@ NTSTATUS read_fd_with_timeout(int fd, char *buf, } if (readret == -1) { - return map_nt_error_from_unix(save_errno); + return map_nt_error_from_unix(errno); } nread += readret; } @@ -489,7 +488,7 @@ NTSTATUS read_fd_with_timeout(int fd, char *buf, /* Check if error */ if (selrtn == -1) { - return map_nt_error_from_unix(save_errno); + return map_nt_error_from_unix(errno); } /* Did we timeout ? */ -- cgit