It doesn't happen in 1.8. It's been introduced in recent re-jigging of that.


On Sun, Feb 16, 2014 at 5:15 AM, Cedric BAIL <[email protected]> wrote:

> On Sat, Feb 15, 2014 at 1:31 AM, Daniel Kolesa <[email protected]> wrote:
> > q66 pushed a commit to branch master.
> >
> >
> http://git.enlightenment.org/core/efl.git/commit/?id=136cf346e9bbf6d60e3fc9899f506de247d88188
> >
> > commit 136cf346e9bbf6d60e3fc9899f506de247d88188
> > Author: Daniel Kolesa <[email protected]>
> > Date:   Fri Feb 14 16:30:51 2014 +0000
> >
> >     evas/common: fix segfaults in evas_map_image_loop.c
>
> Sounds useful to backport in 1.8.
>
> > ---
> >  src/lib/evas/common/evas_map_image_loop.c | 5 +++++
> >  1 file changed, 5 insertions(+)
> >
> > diff --git a/src/lib/evas/common/evas_map_image_loop.c
> b/src/lib/evas/common/evas_map_image_loop.c
> > index b6e6e7b..562f193 100644
> > --- a/src/lib/evas/common/evas_map_image_loop.c
> > +++ b/src/lib/evas/common/evas_map_image_loop.c
> > @@ -39,7 +39,12 @@
> >          DATA32 val1, val2, val3, val4;
> >
> >          u1 = u;
> > +        if (u1 < 0) u1 = 0;
> > +        else if (u1 >= swp) u1 = swp - 1;
> > +
> >          v1 = v;
> > +        if (v1 < 0) v1 = 0;
> > +        else if (v1 >= shp) v1 = shp - 1;
> >
> >          u2 = u1 + FPFPI1;      // next u point
> >          if (u2 >= swp) u2 = swp - 1;
> >
> > --
> >
> >
> >
>
>
>
> --
> Cedric BAIL
>
>
> ------------------------------------------------------------------------------
> Android apps run on BlackBerry 10
> Introducing the new BlackBerry 10.2.1 Runtime for Android apps.
> Now with support for Jelly Bean, Bluetooth, Mapview and more.
> Get your Android app in front of a whole new audience.  Start now.
>
> http://pubads.g.doubleclick.net/gampad/clk?id=124407151&iu=/4140/ostg.clktrk
> _______________________________________________
> enlightenment-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
------------------------------------------------------------------------------
Android apps run on BlackBerry 10
Introducing the new BlackBerry 10.2.1 Runtime for Android apps.
Now with support for Jelly Bean, Bluetooth, Mapview and more.
Get your Android app in front of a whole new audience.  Start now.
http://pubads.g.doubleclick.net/gampad/clk?id=124407151&iu=/4140/ostg.clktrk
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to