From 68363049579c408e56170933cd0b5094934f7c20 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Fri, 21 May 2010 23:14:19 +0200 Subject: s4:ntvfs/posix/pvfs_wait.c - fix a "calculated value unused" warning The calculated value is "req" (!= NULL) if "talloc_reference" did work correctly or it is NULL if we ran out of memory. --- source4/ntvfs/posix/pvfs_wait.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'source4/ntvfs/posix') diff --git a/source4/ntvfs/posix/pvfs_wait.c b/source4/ntvfs/posix/pvfs_wait.c index e6977efe5d..876ce52797 100644 --- a/source4/ntvfs/posix/pvfs_wait.c +++ b/source4/ntvfs/posix/pvfs_wait.c @@ -102,9 +102,11 @@ static void pvfs_wait_timeout(struct tevent_context *ev, pwait->reason = PVFS_WAIT_TIMEOUT; - talloc_reference(ev, req); - ntvfs_async_setup(pwait->req, pwait); - talloc_unlink(ev, req); + req = talloc_reference(ev, req); + if (req != NULL) { + ntvfs_async_setup(req, pwait); + talloc_unlink(ev, req); + } } -- cgit