Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
cacalabs
/
libcaca
réplica de
https://github.com/cacalabs/libcaca.git
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
7
Wiki
Actividad
Explorar el Código
Fix limits settings in area export
tags/v0.99.beta17
Pascal Terjan
pterjan
hace 15 años
padre
d3ef2bbecd
commit
ac9b1074b4
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-1
caca/codec/export.c
+ 1
- 1
caca/codec/export.c
Ver fichero
@@ -146,7 +146,7 @@ void *caca_export_area_to_memory(caca_canvas_t const *cv, int x, int y, int w,
void *ret;
if(w < 0 || h < 0 || x < 0 || y < 0
|| x + w >
=
cv->width || y + h >
=
cv->height)
|| x + w > cv->width || y + h > cv->height)
{
seterrno(EINVAL);
return NULL;
Escribir
Vista previa
Cargando…
Cancelar
Guardar