> @@ -233,7 +235,7 @@ static void findMatchingOpeningTag(ScintillaObject *sci, > gchar *tagName, gint op > gchar *matchingTagName = get_tag_name(sci, > matchingOpeningBracket, > matchingClosingBracket, > isMatchingTagOpening); > - if(strcmp(tagName, matchingTagName) == 0) > + if(matchingTagName && strcmp(tagName, matchingTagName) == 0)
Or it could use `g_strcmp0()`. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/447/files/5b461b3bdcf2c380e5f323e287be4ebd32f07059#r67291652
