mirror of
https://github.com/golang/go
synced 2024-11-19 12:34:47 -07:00
gc: abort if given an unknown debug (-d) flag
The check for unknown command line debug flags in gc was incorrect: the loop over debugtab terminates when it reaches a nil entry, but it was only reporting an error if the parser had passed the last entry of debugtab (which it never did). Fix this by reporting the usage error if the loop reaches a nil entry. LGTM=rsc R=rsc CC=golang-codereviews https://golang.org/cl/166110043
This commit is contained in:
parent
182ec4395e
commit
516d9ef53b
@ -344,8 +344,8 @@ main(int argc, char *argv[])
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(j == nelem(debugtab))
|
if(debugtab[j].name == nil)
|
||||||
fatal("unknown debug information -d '%s'\n", f[i]);
|
sysfatal("unknown debug information -d '%s'\n", f[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user