summaryrefslogtreecommitdiff
path: root/source3/libsmb
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-03-12 17:18:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:15:19 -0500
commit784cc042cb245786516333ae53cfde8fc9502a23 (patch)
tree7455682e1a43d7ba056340502756a6b987e8aae2 /source3/libsmb
parent6a8432833bb073c7fa91f9f4de1fe7a5cd8d0cec (diff)
downloadsamba-784cc042cb245786516333ae53cfde8fc9502a23.tar.gz
samba-784cc042cb245786516333ae53cfde8fc9502a23.tar.bz2
samba-784cc042cb245786516333ae53cfde8fc9502a23.zip
r14241: Fix Coverity bug # 146
(This used to be commit 97789ec8fc4ae2d31f6dd554d9979abce186eb30)
Diffstat (limited to 'source3/libsmb')
-rw-r--r--source3/libsmb/libsmbclient.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/libsmb/libsmbclient.c b/source3/libsmb/libsmbclient.c
index 6b4ae9f4b7..15355016d0 100644
--- a/source3/libsmb/libsmbclient.c
+++ b/source3/libsmb/libsmbclient.c
@@ -1200,7 +1200,7 @@ smbc_read_ctx(SMBCCTX *context,
* the call to cli_read() instead of file->offset fixes a problem
* retrieving data at an offset greater than 4GB.
*/
- off_t offset = file->offset;
+ off_t offset;
if (!context || !context->internal ||
!context->internal->_initialized) {
@@ -1219,6 +1219,8 @@ smbc_read_ctx(SMBCCTX *context,
}
+ offset = file->offset;
+
/* Check that the buffer exists ... */
if (buf == NULL) {