Commit 0e147cfa authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 702590 - Crash with TAB_SIZE=-1

parent 07d8a4ee
......@@ -183,7 +183,10 @@ void ConfigInt::convertStrToVal()
config_warn("Warning: argument `%s' for option %s is not a valid number in the range [%d..%d]!\n"
"Using the default: %d!\n",m_valueString.data(),m_name.data(),m_minVal,m_maxVal,m_value);
}
m_value=val;
else
{
m_value=val;
}
}
}
......
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