diff --git a/ChangeLog b/ChangeLog index fb693c208e..d372f16667 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,9 @@ multiple-powers of co-factors. For example, the old algorithm thought the LCM of 100,96875 was 3100, when it is really 387500, because it was removing the factor of '5' too many times.. + + * src/app-utils/test/test-scm-query-string.c -- fix a memory leak + in the test. 2003-01-19 John Pierce diff --git a/src/app-utils/test/test-scm-query-string.c b/src/app-utils/test/test-scm-query-string.c index d81a2f7276..4512ab86d2 100644 --- a/src/app-utils/test/test-scm-query-string.c +++ b/src/app-utils/test/test-scm-query-string.c @@ -49,6 +49,7 @@ test_query (Query *q, SCM val2str) { success ("queries match"); } + if (q2) xaccFreeQuery (q2); if (str) free (str); }