diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-07-12 22:26:49 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-07-12 22:26:49 (GMT) |
commit | 7e1c5ac72a317d39952843239023c0fa506f2322 (patch) | |
tree | 206b4f7ca4165c22b796d90e3343f677296b0857 /src/format/dex | |
parent | 254254db8c09eb4b4f8523e73551c13ec281d194 (diff) |
Cleaned the code handling binary symbols.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@548 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/dex')
-rw-r--r-- | src/format/dex/pool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/format/dex/pool.c b/src/format/dex/pool.c index 0c982cd..a869873 100644 --- a/src/format/dex/pool.c +++ b/src/format/dex/pool.c @@ -55,8 +55,8 @@ bool find_all_dex_strings(GDexFormat *format) text = get_string_from_dex_pool(format, i); if (text == NULL) continue; - symbol = g_binary_symbol_new(STP_STRING, NULL, i); - g_binary_symbol_set_alt_name(symbol, strdup(text)); + symbol = g_binary_symbol_new(STP_STRING); + g_binary_symbol_set_alt_label(symbol, text); g_binary_format_add_symbol(G_BIN_FORMAT(format), symbol); |