Debugger: Fix reading of thread address field

Change-Id: I1735890a94f89b794cd0ffabc80f9dd1e000abbf
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
hjk
2013-06-06 13:18:13 +02:00
parent 317d9d50cb
commit f2fa59d649

View File

@@ -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;