Fix regression introduced in hrev43513.

- A mistake in variable renaming resulted Architecture::UpdateStackFrameCpuState()
  no longer being called.
This commit is contained in:
Rene Gollent
2012-12-25 09:32:56 -05:00
parent bc715a5fe8
commit 717f11d412
+1 -1
View File
@@ -185,7 +185,7 @@ Architecture::CreateStackTrace(Team* team,
return B_NO_MEMORY; return B_NO_MEMORY;
} }
frame = nextFrame; nextFrame = frame;
cpuState = previousCpuState; cpuState = previousCpuState;
if (--maxStackDepth == 0) if (--maxStackDepth == 0)
break; break;