Kaydet (Commit) 96365ae6 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror=maybe-uninitialized

Change-Id: I31eefa2444d7d108103818785e83816d07f8cde2
üst c988da28
......@@ -92,8 +92,8 @@ int RTFTokenizer::resolveParse()
{
//SAL_INFO("writerfilter", OSL_THIS_FUNC << ": parsing character '" << ch << "'");
sal_uInt32 nCurrentPos;
if (m_xStatusIndicator.is() && (nCurrentPos = Strm().Tell()) > (nLastPos + nPercentSize))
sal_uInt32 nCurrentPos = Strm().Tell();
if (m_xStatusIndicator.is() && nCurrentPos > (nLastPos + nPercentSize))
m_xStatusIndicator->setValue(nLastPos = nCurrentPos);
if (m_nGroup < 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment