summaryrefslogtreecommitdiff
path: root/src/analysis/variable.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-02-28 17:39:48 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-03-01 20:15:47 (GMT)
commit2245e2b3c4f4ff96cf462e76e24c04d4d0941996 (patch)
treefe32bed6dd26c4b4fa144c42db19771f02ca3ef5 /src/analysis/variable.c
parent11047009c222d3dba1380e63c3099cce0dbc6996 (diff)
Dealt with the prototypes from the Dex pool.
Diffstat (limited to 'src/analysis/variable.c')
-rw-r--r--src/analysis/variable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analysis/variable.c b/src/analysis/variable.c
index a8f1ba5..d547281 100644
--- a/src/analysis/variable.c
+++ b/src/analysis/variable.c
@@ -254,9 +254,9 @@ char *g_binary_variable_to_string(const GBinVariable *var, bool simple)
char *result; /* Valeur à retourner */
/* FIXME : décompilation sans type ! */
- //result = _g_data_type_to_string(var->type, simple);
+ result = _g_data_type_to_string(var->type, simple);
- result = strdup("");
+ //result = strdup("");
if (var->name != NULL)
{