Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
70c47334
Commit
70c47334
authored
Feb 04, 2010
by
Thorbjørn Lindeijer
Committed by
Lasse Holmstedt
Feb 15, 2010
Browse files
Updated the Qt src/build path to be Qt version independent
parent
abdd404f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
70c47334
...
...
@@ -3724,7 +3724,7 @@ void GdbEngine::handleFetchDisassemblerByLine(const GdbResponse &response)
}
else
{
// Can happen e.g. for initializer list on symbian/rvct where
// we get a file name and line number but where the 'fully
// disassembled function' does not cover the code in the
// disassembled function' does not cover the code in the
// initializer list. Fall back needed:
//fetchDisassemblerByAddress(ac.agent, true);
fetchDisassemblerByCli
(
ac
.
agent
,
true
);
...
...
@@ -3733,7 +3733,7 @@ void GdbEngine::handleFetchDisassemblerByLine(const GdbResponse &response)
}
else
{
// 536^error,msg="mi_cmd_disassemble: Invalid line number"
QByteArray
msg
=
response
.
data
.
findChild
(
"msg"
).
data
();
if
(
msg
==
"mi_cmd_disassemble: Invalid line number"
if
(
msg
==
"mi_cmd_disassemble: Invalid line number"
||
msg
.
startsWith
(
"Cannot access memory at address"
))
fetchDisassemblerByAddress
(
ac
.
agent
,
true
);
else
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment