Luke Krasnoff
пре 3 година
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са
4 додато и
0 уклоњено
-
src/rtext.c
|
|
@ -1142,6 +1142,10 @@ bool TextIsEqual(const char *text1, const char *text2) |
|
|
|
{ |
|
|
|
bool result = false; |
|
|
|
|
|
|
|
if (text1 == NULL || text2 == NULL) { |
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
|
|
if (strcmp(text1, text2) == 0) result = true; |
|
|
|
|
|
|
|
return result; |
|
|
|