This website works better with JavaScript.
Почетна
Преглед
Помоћ
Пријавите Се
Archivist
/
raylib-src
огледало од
https://github.com/raysan5/raylib
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Издања
24
Вики
Activity
Преглед изворни кода
[text] TextLength() security check
pull/1104/head
Ray
пре 5 година
родитељ
df4b55d657
комит
39e73ccc4d
1 измењених фајлова
са
4 додато
и
1 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
src/text.c
+ 4
- 1
src/text.c
Прегледај датотеку
@ -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
;
}
Write
Preview
Loading…
Откажи
Сачувај