From 9230c659f66df3da9fda5e7cae1717f19c9c08c7 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 25 Aug 2006 18:24:43 +0000 Subject: r17835: Fix Coverity bugs 306, 309, 310. Jeremy, you might want to look at the trans2 one. Volker (This used to be commit d727fc681c073a1b09accd31a07341b58e10eebb) --- source3/smbd/trans2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd') diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 87bfa18dcf..f40dd5154b 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -3085,7 +3085,7 @@ total_data=%u (should be %u)\n", (unsigned int)total_data, (unsigned int)IVAL(pd files_struct *fsp1 = file_find_di_first(sbuf.st_dev, sbuf.st_ino); if (fsp1 && fsp1->pending_modtime) { /* the pending modtime overrides the current modtime */ - mtime_ts.tv_sec = fsp->pending_modtime; + mtime_ts.tv_sec = fsp1->pending_modtime; mtime_ts.tv_nsec = 0; } if (fsp1 && fsp1->initial_allocation_size) { -- cgit