diff options
Diffstat (limited to 'src/eom-uri-converter.c')
-rw-r--r-- | src/eom-uri-converter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eom-uri-converter.c b/src/eom-uri-converter.c index 6382e74..452a19b 100644 --- a/src/eom-uri-converter.c +++ b/src/eom-uri-converter.c @@ -834,8 +834,6 @@ eom_uri_converter_preview (const char *format_str, EomImage *img, GdkPixbufForma n_digits = ceil (MIN (log10 (G_MAXULONG), MAX (log10 (counter), log10 (n_images)))); - str = g_string_new (""); - if (!g_utf8_validate (format_str, -1, NULL)) return NULL; @@ -843,6 +841,8 @@ eom_uri_converter_preview (const char *format_str, EomImage *img, GdkPixbufForma s = format_str; token_next = FALSE; + str = g_string_new (""); + for (i = 0; i < len; i++, s = g_utf8_next_char (s)) { c = g_utf8_get_char (s); |