forked from qt-creator/qt-creator
Debugger: Fix reading of thread address field
Change-Id: I1735890a94f89b794cd0ffabc80f9dd1e000abbf Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -54,7 +54,7 @@ void mergeThreadData(ThreadData &data, const ThreadData &other)
|
||||
data.frameLevel = other.frameLevel;
|
||||
if (!other.function.isEmpty())
|
||||
data.function = other.function;
|
||||
if (!other.address)
|
||||
if (other.address)
|
||||
data.address = other.address;
|
||||
if (!other.module.isEmpty())
|
||||
data.module = other.module;
|
||||
|
||||
Reference in New Issue
Block a user