diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-07-24 18:43:55 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-07-24 18:43:55 (GMT) |
commit | 156d2e2f6beda2302552ac79678494d914fda05b (patch) | |
tree | 021825960b7ac3315a336fc085a4f1d07c05df39 /plugins/readelf | |
parent | 21537636cd8318cf5a720211619ad3c3023b52e9 (diff) |
Replaced all remaining raw accesses to binary contents with the GBinContent wrapper in binary formats.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@555 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'plugins/readelf')
-rw-r--r-- | plugins/readelf/header.c | 2 | ||||
-rw-r--r-- | plugins/readelf/program.c | 2 | ||||
-rw-r--r-- | plugins/readelf/section.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/readelf/header.c b/plugins/readelf/header.c index d4dd706..6c7e171 100644 --- a/plugins/readelf/header.c +++ b/plugins/readelf/header.c @@ -55,7 +55,7 @@ bool annotate_elf_header(GElfFormat *format) GBinSymbol *symbol; /* Symbole à intégrer */ const char *text; /* Texte constant à insérer */ - content = g_binary_format_get_conten_(G_BIN_FORMAT(format)); + content = g_binary_format_get_content(G_BIN_FORMAT(format)); header = g_elf_format_get_header(format); endian = g_elf_format_get_endianness(format); diff --git a/plugins/readelf/program.c b/plugins/readelf/program.c index ae10369..0a5ce7f 100644 --- a/plugins/readelf/program.c +++ b/plugins/readelf/program.c @@ -68,7 +68,7 @@ static bool annotate_elf_program_header(GElfFormat *format, SourceEndian endian, if (!read_elf_program_header(format, get_phy_addr(pos), &phdr)) return false; - content = g_binary_format_get_conten_(G_BIN_FORMAT(format)); + content = g_binary_format_get_content(G_BIN_FORMAT(format)); /* Champ "p_type" */ diff --git a/plugins/readelf/section.c b/plugins/readelf/section.c index 3884818..8445fc6 100644 --- a/plugins/readelf/section.c +++ b/plugins/readelf/section.c @@ -71,7 +71,7 @@ static bool annotate_elf_section_header(GElfFormat *format, SourceEndian endian, if (!read_elf_section_header(format, get_phy_addr(pos), &shdr)) return false; - content = g_binary_format_get_conten_(G_BIN_FORMAT(format)); + content = g_binary_format_get_content(G_BIN_FORMAT(format)); /* Champ "sh_name" */ |