about summary refs log tree commit diff stats
path: root/example
diff options
context:
space:
mode:
Diffstat (limited to 'example')
-rw-r--r--example/ida/symbol_exec.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/example/ida/symbol_exec.py b/example/ida/symbol_exec.py
index b1601cef..c7aff5b5 100644
--- a/example/ida/symbol_exec.py
+++ b/example/ida/symbol_exec.py
@@ -16,7 +16,8 @@ class symbolicexec_t(idaapi.simplecustviewer_t):
 
     def expand(self, linenum):
         element = self.line2eq[linenum]
-        expanded = Variables_Identifier(element[1])
+        expanded = Variables_Identifier(element[1],
+                                        var_prefix="%s_v" % element[0])
         self.line2eq = self.line2eq[0:linenum] + \
             expanded.vars.items() + \
             [(element[0], expanded.equation)] + \