* symfile.c (find_separate_debug_file): Remove double free of

canon_name.
This commit is contained in:
Doug Evans 2009-08-14 23:35:33 +00:00
parent b8fa0bfa75
commit 7e960b208f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-08-14 Doug Evans <dje@google.com>
* symfile.c (find_separate_debug_file): Remove double free of
canon_name.
2009-08-14 Pedro Alves <pedro@codesourcery.com>
* top.c (any_thread_of): Delete.

View File

@ -1457,7 +1457,6 @@ find_separate_debug_file (struct objfile *objfile)
xfree (canon_name);
xfree (basename);
xfree (dir);
xfree (canon_name);
return xstrdup (debugfile);
}
}