-
vers: Ilib-1.1.9
file: lib/IFlood.c
at line 67, the 'in_line' condition checks also the image border, but then check is against imagep->height!, and the algorithm fails.
To fix the bug, apply
diff lib/IFlood.c lib/IFlood.c~
67c67
< in_line = ( fillR >= imagep->width ) ? 0 : _IColorsMatch ( color, origColor );
---
> in_line = ( fillR >= imagep->height ) ? 0 : _IColorsMatch (...
2007-12-18 15:59:24 UTC by mrzcavalli
-
cknudsen committed patchset 43 of module ilib to the ilib CVS repository, changing 3 files.
2004-11-15 15:23:40 UTC by cknudsen
-
cknudsen committed patchset 42 of module ilib to the ilib CVS repository, changing 1 files.
2004-11-03 16:44:22 UTC by cknudsen
-
cknudsen committed patchset 41 of module ilib to the ilib CVS repository, changing 2 files.
2004-11-03 16:42:28 UTC by cknudsen
-
cknudsen committed patchset 40 of module ilib to the ilib CVS repository, changing 1 files.
2004-11-03 16:41:20 UTC by cknudsen
-
cknudsen committed patchset 39 of module ilib to the ilib CVS repository, changing 2 files.
2004-11-03 16:39:58 UTC by cknudsen
-
cknudsen committed patchset 38 of module ilib to the ilib CVS repository, changing 1 files.
2004-11-03 16:39:02 UTC by cknudsen
-
cknudsen committed patchset 37 of module ilib to the ilib CVS repository, changing 1 files.
2004-11-02 21:58:04 UTC by cknudsen
-
cknudsen committed patchset 36 of module ilib to the ilib CVS repository, changing 2 files.
2004-10-29 02:41:11 UTC by cknudsen
-
cknudsen committed patchset 35 of module ilib to the ilib CVS repository, changing 1 files.
2004-10-29 02:38:00 UTC by cknudsen