<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to bugs</title><link href="https://sourceforge.net/p/ilib/bugs/" rel="alternate"/><link href="https://sourceforge.net/p/ilib/bugs/feed.atom" rel="self"/><id>https://sourceforge.net/p/ilib/bugs/</id><updated>2007-12-18T15:59:24Z</updated><subtitle>Recent changes to bugs</subtitle><entry><title>floodfill bug</title><link href="https://sourceforge.net/p/ilib/bugs/1/" rel="alternate"/><published>2007-12-18T15:59:24Z</published><updated>2007-12-18T15:59:24Z</updated><author><name>mrzcavalli</name><uri>https://sourceforge.net/u/mrzcavalli/</uri></author><id>https://sourceforge.net2800150615cdf525e54395d1484d1e0a092ba516</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;vers: Ilib-1.1.9&lt;br /&gt;
file: lib/IFlood.c&lt;/p&gt;
&lt;p&gt;at line 67, the 'in_line' condition checks also the image border, but then check is against imagep-&amp;gt;height!, and the algorithm fails.&lt;/p&gt;
&lt;p&gt;To fix the bug, apply&lt;br /&gt;
diff lib/IFlood.c lib/IFlood.c~&lt;br /&gt;
67c67&lt;br /&gt;
&amp;lt;     in_line = ( fillR &amp;gt;= imagep-&amp;gt;width ) ? 0 : _IColorsMatch ( color, origColor );&lt;br /&gt;
---&lt;br /&gt;
&amp;gt;     in_line = ( fillR &amp;gt;= imagep-&amp;gt;height ) ? 0 : _IColorsMatch ( color, origColor );&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>