From c45d3badc96481db093560b94d8bf51ead6bd17c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 17 Feb 2016 13:14:50 +0200 Subject: new loplugin: commaoperator Change-Id: I03f24e61f696b7619855e3c7010aa0d874e5a4ff --- ucbhelper/source/provider/fd_inputstream.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ucbhelper') diff --git a/ucbhelper/source/provider/fd_inputstream.cxx b/ucbhelper/source/provider/fd_inputstream.cxx index 948cc913ba84..e9210a7a5c8a 100644 --- a/ucbhelper/source/provider/fd_inputstream.cxx +++ b/ucbhelper/source/provider/fd_inputstream.cxx @@ -124,7 +124,10 @@ namespace ucbhelper { osl::MutexGuard aGuard(m_aMutex); if(m_tmpfl) - osl_closeFile(m_tmpfl),m_tmpfl = nullptr; + { + osl_closeFile(m_tmpfl); + m_tmpfl = nullptr; + } } -- cgit