Add missing break

This commit is contained in:
Nyall Dawson 2024-01-12 08:13:40 +10:00 committed by Jakub Melka
parent 2ed31dcd2c
commit 8c40e49801
1 changed files with 1 additions and 0 deletions

View File

@ -1243,6 +1243,7 @@ QByteArray PDFStandardOrPublicSecurityHandler::adjustPassword(const QString& pas
// We don't do other checks. We will transform password to the UTF-8 encoding // We don't do other checks. We will transform password to the UTF-8 encoding
// and according the PDF specification, we take only first 127 characters. // and according the PDF specification, we take only first 127 characters.
result = preparedPassword.toUtf8().left(127); result = preparedPassword.toUtf8().left(127);
break;
} }
default: default: