diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-08-03 02:20:46 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-08-03 02:20:46 +0800 |
commit | 7b8d33db23a1c6331b5838281c8ed2b1348fbb66 (patch) | |
tree | 91acb5a6c1aec606bc53e54852e0659dfc8c8419 /widgets | |
parent | 15b98319b3d007e31a5b55a0bc0f21a4c1498e1d (diff) | |
download | gsoc2013-evolution-7b8d33db23a1c6331b5838281c8ed2b1348fbb66.tar gsoc2013-evolution-7b8d33db23a1c6331b5838281c8ed2b1348fbb66.tar.gz gsoc2013-evolution-7b8d33db23a1c6331b5838281c8ed2b1348fbb66.tar.bz2 gsoc2013-evolution-7b8d33db23a1c6331b5838281c8ed2b1348fbb66.tar.lz gsoc2013-evolution-7b8d33db23a1c6331b5838281c8ed2b1348fbb66.tar.xz gsoc2013-evolution-7b8d33db23a1c6331b5838281c8ed2b1348fbb66.tar.zst gsoc2013-evolution-7b8d33db23a1c6331b5838281c8ed2b1348fbb66.zip |
Set et->priv to NULL here just to be sure.
2001-08-02 Christopher James Lahey <clahey@ximian.com>
* e-tree.c (et_destroy): Set et->priv to NULL here just to be
sure.
svn path=/trunk/; revision=11588
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/table/e-tree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widgets/table/e-tree.c b/widgets/table/e-tree.c index 985a44ab2d..2dab3a01ee 100644 --- a/widgets/table/e-tree.c +++ b/widgets/table/e-tree.c @@ -241,6 +241,7 @@ et_destroy (GtkObject *object) gtk_widget_destroy (GTK_WIDGET (et->priv->table_canvas)); g_free(et->priv); + et->priv = NULL; (*parent_class->destroy)(object); } |