* 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;
}