mirror of
https://gitee.com/RubyMetric/chsrc.git
synced 2025-12-26 05:02:46 +00:00
Fix `xy_streql` when NULL
This commit is contained in:
parent
b8b59ba3e1
commit
b4d6cf3e43
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue