[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: branch: master updated (1.0-20070526-53-gadb2dc9)
The branch, master has been updated
via adb2dc9eedb72dc180e081ded2fc1ed20dde0a23 (commit)
from 2482dbc0cd6d012f529e405a1e51fc1376af9b6e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=================
Commit Messages
=================
commit adb2dc9eedb72dc180e081ded2fc1ed20dde0a23
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date: Sun Jun 24 03:48:30 2007 +0100
Fix bug #1741452, segfault on "Include component as individual objects"
Inserted a missing line to set the complex place list to NULL after freeing
its contents.
:100644 100644 022054e... 684b392... M gschem/src/o_complex.c
=========
Changes
=========
commit adb2dc9eedb72dc180e081ded2fc1ed20dde0a23
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date: Sun Jun 24 03:48:30 2007 +0100
Fix bug #1741452, segfault on "Include component as individual objects"
Inserted a missing line to set the complex place list to NULL after freeing
its contents.
diff --git a/gschem/src/o_complex.c b/gschem/src/o_complex.c
index 022054e..684b392 100644
--- a/gschem/src/o_complex.c
+++ b/gschem/src/o_complex.c
@@ -349,7 +349,8 @@ void o_complex_end(TOPLEVEL *w_current, int screen_x, int screen_y)
o_undo_savestate(w_current, UNDO_ALL);
i_update_menus(w_current);
s_delete_object_glist(w_current, w_current->page_current->
- complex_place_list);
+ complex_place_list);
+ w_current->page_current->complex_place_list = NULL;
return;
}
=========
Summary
=========
gschem/src/o_complex.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs