[sysprof] Free the sfile formats after freeing the input/output files.
- From: Søren Sandmann Pedersen <ssp src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [sysprof] Free the sfile formats after freeing the input/output files.
- Date: Mon, 17 Aug 2009 12:20:21 +0000 (UTC)
commit 79921d709844bd35d307f5754faa285702463491
Author: Søren Sandmann Pedersen <sandmann daimi au dk>
Date: Mon Aug 17 08:19:38 2009 -0400
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 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/profile.c b/profile.c
index 41c70fc..5fda470 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);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]