From: Michael Orlitzky Date: Sun, 6 Aug 2023 17:28:43 +0000 (-0400) Subject: io-svg.c: make two comments more informative X-Git-Tag: 0.0.1~18 X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=69c07afcddd151c04a9175f611b04eb23223310d;p=libsvgtiny-pixbuf.git io-svg.c: make two comments more informative --- diff --git a/io-svg.c b/io-svg.c index 09b70af..e44af1a 100644 --- a/io-svg.c +++ b/io-svg.c @@ -469,14 +469,14 @@ static gchar* process_gtk_symbolic_svg_xinclude(const gchar* buffer, * leading tag. */ gchar* svg_open_start = g_strstr_len(decoded, decoded_size, ""); if (svg_open_end == NULL) { - /* Uhhhhh */ + /* The decoded data is not what we were expecting. Give up. */ g_free(decoded); return NULL; }