applied a fix for bug #16221 found by Seth Burgess <sjburges@gimp.org>.

2000-08-17  Sven Neumann  <sven@gimp.org>

	* app/boundary.c (allocate_vert_segs): applied a fix for bug #16221
	found by Seth Burgess <sjburges@gimp.org>.
This commit is contained in:
Sven Neumann
2000-08-17 15:11:52 +00:00
committed by Sven Neumann
parent d891e165e2
commit 036e512d2e
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-08-17 Sven Neumann <sven@gimp.org>
* app/boundary.c (allocate_vert_segs): applied a fix for bug #16221
found by Seth Burgess <sjburges@gimp.org>.
Wed Aug 16 18:39:44 PDT 2000 Manish Singh <yosh@gimp.org>
* configure.in: removed awk dependency for authors list

View File

@ -228,7 +228,7 @@ allocate_empty_segs (void)
int need_num_segs;
/* find the maximum possible number of empty segments given the current mask */
need_num_segs = cur_PR->w + 2;
need_num_segs = cur_PR->w + 3;
if (need_num_segs > max_empty_segs)
{

View File

@ -228,7 +228,7 @@ allocate_empty_segs (void)
int need_num_segs;
/* find the maximum possible number of empty segments given the current mask */
need_num_segs = cur_PR->w + 2;
need_num_segs = cur_PR->w + 3;
if (need_num_segs > max_empty_segs)
{