Luke Krasnoff
3 anni fa
committed by
GitHub
Non sono state trovate chiavi note per questa firma nel database
ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con
4 aggiunte e
0 eliminazioni
-
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; |
|
|
|