aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Name.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDF_Name.cc')
-rw-r--r--libqpdf/QPDF_Name.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/libqpdf/QPDF_Name.cc b/libqpdf/QPDF_Name.cc
index ffd21af2..7972210c 100644
--- a/libqpdf/QPDF_Name.cc
+++ b/libqpdf/QPDF_Name.cc
@@ -18,28 +18,28 @@ QPDF_Name::normalizeName(std::string const& name)
{
if (name.empty())
{
- return name;
+ return name;
}
std::string result;
result += name.at(0);
for (size_t i = 1; i < name.length(); ++i)
{
- char ch = name.at(i);
- // Don't use locale/ctype here; follow PDF spec guidelines.
+ char ch = name.at(i);
+ // Don't use locale/ctype here; follow PDF spec guidelines.
if (ch == '\0')
{
// QPDFTokenizer embeds a null character to encode an
// invalid #.
result += "#";
}
- else if (strchr("#()<>[]{}/%", ch) || (ch < 33) || (ch > 126))
- {
+ else if (strchr("#()<>[]{}/%", ch) || (ch < 33) || (ch > 126))
+ {
result += "#" + QUtil::hex_encode(std::string(&ch, 1));
- }
- else
- {
- result += ch;
- }
+ }
+ else
+ {
+ result += ch;
+ }
}
return result;
}