From 79921d709844bd35d307f5754faa285702463491 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Sandmann=20Pedersen?= Date: Mon, 17 Aug 2009 08:19:38 -0400 Subject: [PATCH] Free the sfile formats after freeing the input/output files. The instruction arrays in the files have a references to types that are owned by the formats, so if the formats are freed first, valgrind complains about invalid accesses during the freeing of the instruction array. --- profile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profile.c b/profile.c index 41c70fca..5fda4707 100644 --- a/profile.c +++ b/profile.c @@ -142,8 +142,8 @@ profile_save (Profile *profile, result = sfile_output_save (output, file_name, err); - sformat_free (format); sfile_output_free (output); + sformat_free (format); return result; } @@ -214,8 +214,8 @@ profile_load (const char *filename, GError **err) sfile_end_get (input, "nodes", NULL); sfile_end_get (input, "profile", NULL); - sformat_free (format); sfile_input_free (input); + sformat_free (format); stack_stash_set_root (profile->stash, root);