fix debug panic
This commit is contained in:
parent
0b315e97c8
commit
b2b13bbe89
@ -347,7 +347,7 @@ func (d *debugLog) getNormalizedStackTrace() string {
|
|||||||
// for each line that ends in a ), remove the call args -- these are the registers
|
// for each line that ends in a ), remove the call args -- these are the registers
|
||||||
lines := strings.Split(sk, "\n")[1:]
|
lines := strings.Split(sk, "\n")[1:]
|
||||||
for i, line := range lines {
|
for i, line := range lines {
|
||||||
if line[len(line)-1] == ')' {
|
if len(line) > 0 && line[len(line)-1] == ')' {
|
||||||
idx := strings.LastIndex(line, "(")
|
idx := strings.LastIndex(line, "(")
|
||||||
if idx < 0 {
|
if idx < 0 {
|
||||||
continue
|
continue
|
||||||
|
Loading…
Reference in New Issue
Block a user