Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorAnton Leherbauer2011-11-14 14:55:12 +0000
committerAnton Leherbauer2011-11-14 14:55:12 +0000
commit89aa93ebb281f229ac45bfc5fe1ee93dece9cce2 (patch)
tree9f714ba518d073d62e0a6abbf590e2babb128564 /python
parent61f9e7b7bbf1b03b21c7e56309068abab06ab06a (diff)
downloadorg.eclipse.tcf-89aa93ebb281f229ac45bfc5fe1ee93dece9cce2.tar.gz
org.eclipse.tcf-89aa93ebb281f229ac45bfc5fe1ee93dece9cce2.tar.xz
org.eclipse.tcf-89aa93ebb281f229ac45bfc5fe1ee93dece9cce2.zip
TCF Python: Fixed wrong slice bounds
Diffstat (limited to 'python')
-rw-r--r--python/src/tcf/services/remote/SymbolsProxy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/src/tcf/services/remote/SymbolsProxy.py b/python/src/tcf/services/remote/SymbolsProxy.py
index 67b9e9e9f..7d911f6c9 100644
--- a/python/src/tcf/services/remote/SymbolsProxy.py
+++ b/python/src/tcf/services/remote/SymbolsProxy.py
@@ -116,6 +116,6 @@ class SymbolsProxy(symbols.SymbolsService):
if not error:
assert len(args) == 5
error = self.toError(args[0])
- address, size, fp_cmds, reg_cmds = args[1:4]
+ address, size, fp_cmds, reg_cmds = args[1:5]
done.doneFindFrameInfo(self.token, error, address, size, fp_cmds, reg_cmds)
return FindFrameInfoCommand().token

Back to the top