Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
Archivist
/
raylib-src
réplica de
https://github.com/raysan5/raylib
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
24
Wiki
Actividad
Explorar el Código
[text] TextLength() security check
pull/1104/head
Ray
hace 5 años
padre
df4b55d657
commit
39e73ccc4d
Se han
modificado 1 ficheros
con
4 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+4
-1
src/text.c
+ 4
- 1
src/text.c
Ver fichero
@ -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
;
}
Escribir
Vista previa
Cargando…
Cancelar
Guardar