ソースを参照

Fix offset used before range check (#3021)

This use of offset 'i' should follow the range check.
pull/3023/head
Mingjie Shen 1年前
committed by GitHub
コミット
7b7c0c83ef
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      examples/shapes/raygui.h

+ 1
- 1
examples/shapes/raygui.h ファイルの表示

@ -3743,7 +3743,7 @@ static int GetTextWidth(const char *text)
{
if (text[0] == '#')
{
for (int i = 1; (text[i] != '\0') && (i < 5); i++)
for (int i = 1; (i < 5) && (text[i] != '\0'); i++)
{
if (text[i] == '#')
{

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