Issue #2785: Fill by line art detection produces Segmentation fault...
... with some images.
This commit is contained in:
parent
9833da3431
commit
036ccc70cf
1 changed files with 5 additions and 2 deletions
|
|
@ -1556,8 +1556,11 @@ gimp_lineart_curvature_extremums (gfloat *curvatures,
|
|||
}
|
||||
g_free (p);
|
||||
}
|
||||
curvatures[(gint) max_curvature_pixel.x + (gint) max_curvature_pixel.y * width] = max_curvature;
|
||||
g_array_append_val (max_positions, max_curvature_pixel);
|
||||
if (max_curvature > 0.0)
|
||||
{
|
||||
curvatures[(gint) max_curvature_pixel.x + (gint) max_curvature_pixel.y * width] = max_curvature;
|
||||
g_array_append_val (max_positions, max_curvature_pixel);
|
||||
}
|
||||
}
|
||||
}
|
||||
g_queue_free_full (q, g_free);
|
||||
|
|
|
|||
Loading…
Reference in a new issue