Quellcode durchsuchen

Fix limits settings in area export

tags/v0.99.beta17
Pascal Terjan pterjan vor 15 Jahren
Ursprung
Commit
ac9b1074b4
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      caca/codec/export.c

+ 1
- 1
caca/codec/export.c Datei anzeigen

@@ -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;


Laden…
Abbrechen
Speichern