aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/e-sexp.c21
2 files changed, 26 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index aa338ae2c4..f70ca5ec1c 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-02 NotZed <NotZed@HelixCode.com>
+
+ * e-sexp.c (e_sexp_finalise): Free the parse tree if we have one.
+ (e_sexp_parse): If we already have a parse tree, free it.
+
2000-05-02 Matt Loper <matt@helixcode.com>
* Makefile.am: set G_LOG_DOMAIN.
diff --git a/e-util/e-sexp.c b/e-util/e-sexp.c
index ad36c368bf..0f9abc636a 100644
--- a/e-util/e-sexp.c
+++ b/e-util/e-sexp.c
@@ -869,12 +869,17 @@ camel_mbox_folder_search_by_expression(CamelFolder *folder, char *expression, Ca
#endif
+static void e_sexp_finalise(GtkObject *);
+
static void
e_sexp_class_init (ESExpClass *class)
{
GtkObjectClass *object_class;
object_class = (GtkObjectClass *) class;
+
+ object_class->finalize = e_sexp_finalise;
+
parent_class = gtk_type_class (gtk_object_get_type ());
}
@@ -898,6 +903,19 @@ static struct {
};
static void
+e_sexp_finalise(GtkObject *o)
+{
+ ESExp *s = (ESExp *)o;
+
+ if (s->tree) {
+ parse_term_free(s->tree);
+ s->tree = NULL;
+ }
+
+ ((GtkObjectClass *)(parent_class))->finalize((GtkObject *)o);
+}
+
+static void
e_sexp_init (ESExp *s)
{
int i;
@@ -1041,6 +1059,9 @@ e_sexp_parse(ESExp *f)
{
g_return_if_fail(FILTER_IS_SEXP(f));
+ if (f->tree)
+ parse_term_free(f->tree);
+
f->tree = parse_list(f, FALSE);
if (f->tree)
a id='n147' href='#n147'>147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213