re PR go/66016 (Accessing nil Func's name results in crash)
PR go/66016 runtime: Don't crash in Func.Name if the Func is nil. Related to Go issue 10696 From-SVN: r222816
This commit is contained in:
parent
460f31eeeb
commit
bd9e8f7e4a
1 changed files with 2 additions and 0 deletions
|
@ -231,6 +231,8 @@ String runtime_funcname_go (Func *f)
|
|||
String
|
||||
runtime_funcname_go (Func *f)
|
||||
{
|
||||
if (f == NULL)
|
||||
return runtime_gostringnocopy ((const byte *) "");
|
||||
return f->name;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue