Fix xy_streql when NULL

This commit is contained in:
Aoran Zeng 2024-06-08 15:32:31 +08:00
parent b8b59ba3e1
commit b4d6cf3e43

View File

@ -292,6 +292,10 @@ _xy_str_to_terminal_style (int style, const char *str)
static bool
xy_streql (const char *str1, const char *str2)
{
if (NULL==str1 || NULL==str2)
{
return false;
}
return strcmp (str1, str2) == 0 ? true : false;
}