summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/svg/svg-color.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/svg/svg-color.cpp b/src/svg/svg-color.cpp
index 57003064a..9f7a5a87c 100644
--- a/src/svg/svg-color.cpp
+++ b/src/svg/svg-color.cpp
@@ -481,11 +481,13 @@ bool sp_svg_read_icc_color( gchar const *str, gchar const **end_ptr, SVGICCColor
// Name must start with a certain type of character
good = false;
} else {
- while ( g_ascii_isdigit(*str) || g_ascii_islower(*str) || (*str == '-') ) {
+ while ( g_ascii_isdigit(*str) || g_ascii_isalpha(*str) || (*str == '-') ) {
if ( dest ) {
dest->colorProfile += *str;
}
str++;
+ gboolean aa = g_ascii_isalpha(*str);
+ gboolean bb = aa;
}
while ( g_ascii_isspace(*str) || *str == ',' ) {
str++;