Tämä sivusto toimii paremmin JavaScriptillä.
Etusivu
Tutki
Apua
Kirjaudu sisään
Archivist
/
raylib-src
peilaus alkaen
https://github.com/raysan5/raylib
Tarkkaile
1
Äänestä
0
Fork
0
Koodi
Ongelmat
0
Julkaisut
24
Wiki
Toiminta
Selaa lähdekoodia
[text] TextLength() security check
pull/1104/head
Ray
5 vuotta sitten
vanhempi
df4b55d657
commit
39e73ccc4d
1 muutettua tiedostoa
jossa
4 lisäystä
ja
1 poistoa
Jaettu näkymä
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
src/text.c
+ 4
- 1
src/text.c
Näytä tiedosto
@ -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
;
}
Kirjoita
Esikatselu
Ladataan…
Peruuta
Tallenna