Kaydet (Commit) d2dc8134 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1430057 silence Argument cannot be negative

Change-Id: I58bf1a204393ea95c85f51cf9ef3387db1565a4e
Reviewed-on: https://gerrit.libreoffice.org/51558Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst cce17de6
......@@ -284,7 +284,7 @@ Reference< XHyphenatedWord > SAL_CALL Hyphenator::hyphenate( const OUString& aWo
}
// if we have a hyphenation dictionary matching this locale
if (k != -1)
if (k >= 0)
{
int nHyphenationPos = -1;
int nHyphenationPosAlt = -1;
......
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