Merge pull request #43796 from nekomatata/profiling-error-spam
Fix DebuggerMarshalls errors while profiling
This commit is contained in:
commit
e1e3aa4f23
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ bool DebuggerMarshalls::ServersProfilerFrame::deserialize(const Array &p_arr) {
|
||||||
}
|
}
|
||||||
servers.push_back(si);
|
servers.push_back(si);
|
||||||
}
|
}
|
||||||
CHECK_SIZE(p_arr, idx + 3, "ServersProfilerFrame");
|
CHECK_SIZE(p_arr, idx + 1, "ServersProfilerFrame");
|
||||||
int func_size = p_arr[idx];
|
int func_size = p_arr[idx];
|
||||||
idx += 1;
|
idx += 1;
|
||||||
CHECK_SIZE(p_arr, idx + func_size, "ServersProfilerFrame");
|
CHECK_SIZE(p_arr, idx + func_size, "ServersProfilerFrame");
|
||||||
|
|
Loading…
Reference in a new issue