mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1020541 - JS Stacks no longer reported in the profiler, r=benwa,djvj
This commit is contained in:
parent
5e2429ee57
commit
0f388eafde
@ -424,7 +424,7 @@ static void mergeNativeBacktrace(ThreadProfile &aProfile, const PCArray &array)
|
||||
while (pseudoStackPos < stack->stackSize()) {
|
||||
volatile StackEntry& entry = stack->mStack[pseudoStackPos];
|
||||
|
||||
if (entry.stackAddress() < array.sp_array[i-1] && entry.stackAddress())
|
||||
if (entry.isCpp() && entry.stackAddress() && entry.stackAddress() < array.sp_array[i-1])
|
||||
break;
|
||||
|
||||
addProfileEntry(entry, aProfile, stack, array.array[0]);
|
||||
|
Loading…
Reference in New Issue
Block a user