diff options
author | Dave Korn <dave.korn@artimi.com> | 2010-10-15 16:09:36 +0000 |
---|---|---|
committer | Dave Korn <dave.korn@artimi.com> | 2010-10-15 16:09:36 +0000 |
commit | d4cb7acdd8134607c321fc33c91696d672f49b1d (patch) | |
tree | fb0910d987e3c31ef6c5ead5e16556a942d91ef4 /ld/plugin.c | |
parent | c3842ce50ee3621b3289c1fbd64860c4e8c0cbd8 (diff) | |
download | gdb-d4cb7acdd8134607c321fc33c91696d672f49b1d.zip gdb-d4cb7acdd8134607c321fc33c91696d672f49b1d.tar.gz gdb-d4cb7acdd8134607c321fc33c91696d672f49b1d.tar.bz2 |
Fix potential use-after-free bugs.
ld/ChangeLog:
* plugin.c (add_input_file): Take copy of input string.
(add_input_library): Likewise.
(set_extra_library_path): Likewise.
Diffstat (limited to 'ld/plugin.c')
-rw-r--r-- | ld/plugin.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ld/plugin.c b/ld/plugin.c index b484bd0..0c88ef8 100644 --- a/ld/plugin.c +++ b/ld/plugin.c @@ -433,7 +433,8 @@ static enum ld_plugin_status add_input_file (const char *pathname) { ASSERT (called_plugin); - if (!lang_add_input_file (pathname, lang_input_file_is_file_enum, NULL)) + if (!lang_add_input_file (xstrdup (pathname), lang_input_file_is_file_enum, + NULL)) return LDPS_ERR; return LDPS_OK; } @@ -443,7 +444,8 @@ static enum ld_plugin_status add_input_library (const char *pathname) { ASSERT (called_plugin); - if (!lang_add_input_file (pathname, lang_input_file_is_l_enum, NULL)) + if (!lang_add_input_file (xstrdup (pathname), lang_input_file_is_l_enum, + NULL)) return LDPS_ERR; return LDPS_OK; } @@ -454,7 +456,7 @@ static enum ld_plugin_status set_extra_library_path (const char *path) { ASSERT (called_plugin); - ldfile_add_library_path (path, FALSE); + ldfile_add_library_path (xstrdup (path), FALSE); return LDPS_OK; } |