Explorar el Código
Fix offset used before range check (#3021)
This use of offset 'i' should follow the range check.
pull/3023/head
Mingjie Shen
hace 1 año
cometido por
GitHub
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: 4AEE18F83AFDEB23
Se han
modificado 1 ficheros con
1 adiciones y
1 borrados
-
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] == '#') |
|
|
|
{ |
|
|
|