Pārlūkot izejas kodu

Fix offset used before range check (#3021)

This use of offset 'i' should follow the range check.
pull/3023/head
Mingjie Shen pirms 1 gada
committed by GitHub
vecāks
revīzija
7b7c0c83ef
Šim parakstam datu bāzē netika atrasta zināma atslēga GPG atslēgas ID: 4AEE18F83AFDEB23
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. +1
    -1
      examples/shapes/raygui.h

+ 1
- 1
examples/shapes/raygui.h Parādīt failu

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

Notiek ielāde…
Atcelt
Saglabāt