app: increase vector loading float array size

xcf_load_vector(): the size of GIMP_COORDS_DEFAULT_VALUES has changed,
so the array has must be large enough to hold all its members.
This commit is contained in:
Michael Natterer 2010-01-31 21:35:21 +01:00
parent b499d01a71
commit e82e09307c
1 changed files with 1 additions and 1 deletions

View File

@ -1895,7 +1895,7 @@ xcf_load_vector (XcfInfo *info,
guint32 num_axes; guint32 num_axes;
guint32 num_control_points; guint32 num_control_points;
guint32 type; guint32 type;
gfloat coords[7] = GIMP_COORDS_DEFAULT_VALUES; gfloat coords[8] = GIMP_COORDS_DEFAULT_VALUES;
GimpStroke *stroke; GimpStroke *stroke;
gint j; gint j;