]> gitweb.michael.orlitzky.com - libsvgtiny-pixbuf.git/commitdiff
io-svg.c: make two comments more informative
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 6 Aug 2023 17:28:43 +0000 (13:28 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 6 Aug 2023 17:28:43 +0000 (13:28 -0400)
io-svg.c

index 09b70af7e43cea233227b0cca0ba07ef1d23da8d..e44af1a5a87fbc0299799a169dd91e8622467c83 100644 (file)
--- a/io-svg.c
+++ b/io-svg.c
@@ -469,14 +469,14 @@ static gchar* process_gtk_symbolic_svg_xinclude(const gchar* buffer,
    * leading <svg> tag. */
   gchar* svg_open_start = g_strstr_len(decoded, decoded_size, "<svg ");
   if (svg_open_start == NULL) {
-    /* Uhhhhh */
+    /* The decoded data is not what we were expecting, Give up. */
     g_free(decoded);
     return NULL;
   }
   else {
     gchar* svg_open_end = g_strstr_len(svg_open_start, decoded_size, ">");
     if (svg_open_end == NULL) {
-      /* Uhhhhh */
+      /* The decoded data is not what we were expecting. Give up. */
       g_free(decoded);
       return NULL;
     }