[gimp/soc-2009-dynamics] Bug 554658 – Path Dialog: Path preview pics not to see constantly
- From: Alexia Death <alexiade src gnome org>
- To: svn-commits-list gnome org
- Subject: [gimp/soc-2009-dynamics] Bug 554658 – Path Dialog: Path preview pics not to see constantly
- Date: Sun, 12 Jul 2009 16:27:11 +0000 (UTC)
commit 765fe81311837371bea51039e30c847f380ebad2
Author: Massimo Valentini <sixtysix inwind it>
Date: Tue Jul 7 17:05:42 2009 +0200
Bug 554658 â?? Path Dialog: Path preview pics not to see constantly
Always initialize the 'status' member of a newly allocated cairo_path_t
to the value CAIRO_STATUS_SUCCESS as required to successively call
cairo_append_path().
app/vectors/gimpvectors.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/app/vectors/gimpvectors.c b/app/vectors/gimpvectors.c
index 70fde88..342f381 100644
--- a/app/vectors/gimpvectors.c
+++ b/app/vectors/gimpvectors.c
@@ -1054,6 +1054,7 @@ gimp_vectors_real_make_bezier (const GimpVectors *vectors)
if (cmd_array->len > 0)
{
ret_bezdesc = g_new (GimpBezierDesc, 1);
+ ret_bezdesc->status = CAIRO_STATUS_SUCCESS;
ret_bezdesc->num_data = cmd_array->len;
ret_bezdesc->data = (cairo_path_data_t *) cmd_array->data;
g_array_free (cmd_array, FALSE);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]