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:
committed by
Sven Neumann
parent
d891e165e2
commit
036e512d2e
@ -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
|
||||
|
||||
@ -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)
|
||||
{
|
||||
|
||||
@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user