ソースを参照

[text] TextLength() security check

pull/1104/head
Ray 5年前
コミット
39e73ccc4d
1個のファイルの変更4行の追加1行の削除
  1. +4
    -1
      src/text.c

+ 4
- 1
src/text.c ファイルの表示

@ -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;
}

読み込み中…
キャンセル
保存