Evas filters: Add some crash safety
authorJean-Philippe Andre <jp.andre@samsung.com>
Thu, 25 Jun 2015 06:12:32 +0000 (15:12 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Thu, 25 Jun 2015 06:12:32 +0000 (15:12 +0900)
src/lib/evas/filters/evas_filter.c

index 7ad2878..5d22df2 100644 (file)
@@ -1814,6 +1814,8 @@ _clip_to_target(int *sx /* OUT */, int *sy /* OUT */, int sw, int sh,
         (*rows) = sh;
         if ((*rows) > dh) (*rows) = dh;
      }
+   if ((*cols) < 0) *cols = 0;
+   if ((*rows) < 0) *rows = 0;
 }
 
 #ifdef FILTERS_DEBUG