Procházet zdrojové kódy

Fix offset used before range check (#3021)

This use of offset 'i' should follow the range check.
pull/3023/head
Mingjie Shen před 1 rokem
odevzdal GitHub
rodič
revize
7b7c0c83ef
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      examples/shapes/raygui.h

+ 1
- 1
examples/shapes/raygui.h Zobrazit soubor

@ -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] == '#')
{

Načítá se…
Zrušit
Uložit