Sfoglia il codice sorgente

[text] TextLength() security check

pull/1104/head
Ray 5 anni fa
parent
commit
39e73ccc4d
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. +4
    -1
      src/text.c

+ 4
- 1
src/text.c Vedi File

@ -1147,7 +1147,10 @@ unsigned int TextLength(const char *text)
{
unsigned int length = 0; //strlen(text)
while (*text++) length++;
if (text != NULL)
{
while (*text++) length++;
}
return length;
}

Caricamento…
Annulla
Salva