Ce site fonctionne mieux avec JavaScript.
Accueil
Aide
Connexion
cacalabs
/
libcaca
miroir de
https://github.com/cacalabs/libcaca.git
Suivre
1
Ajouter aux favoris
0
Bifurcation
0
Code
Tickets
0
Versions
7
Wiki
Activité
Parcourir la source
Fix limits settings in area export
tags/v0.99.beta17
Pascal Terjan
pterjan
il y a 15 ans
Parent
d3ef2bbecd
révision
ac9b1074b4
1 fichiers modifiés
avec
1 ajouts
et
1 suppressions
Vue séparée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+1
-1
caca/codec/export.c
+ 1
- 1
caca/codec/export.c
Voir le fichier
@@ -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;
Écrire
Aperçu
Chargement…
Annuler
Enregistrer