diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-07 12:01:49 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-07 12:14:33 +0200 |
commit | e5dd09caafcc1e55797959a8b4373a39c42a3f18 (patch) | |
tree | f2fb340f4a2c670aa781a32997c1b632a48d4a8e /tools/source | |
parent | c668efa5d9a90b814778f267758c7d7d55960017 (diff) |
coverity#708893 unused pointer value
Change-Id: Ib029e08f7dc29330b1a0b5d93c1c0a356dbd59dd
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/stream/strmunx.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/stream/strmunx.cxx b/tools/source/stream/strmunx.cxx index cf9fa9dbc776..89cc16c82562 100644 --- a/tools/source/stream/strmunx.cxx +++ b/tools/source/stream/strmunx.cxx @@ -156,7 +156,7 @@ bool InternalStreamLock::LockFile( sal_Size nStart, sal_Size nEnd, SvFileStream* } } // hint: new InternalStreamLock() adds the entry to the global list - pLock = new InternalStreamLock( nStart, nEnd, pStream ); + new InternalStreamLock( nStart, nEnd, pStream ); return true; } |