зеркало из https://github.com/mozilla/pjs.git
Fix --enable-dtrace build failure from bug 737195. r=npotb, DONTBUILD
This commit is contained in:
Родитель
054c717487
Коммит
772c271b6f
|
@ -325,10 +325,9 @@ FunctionName(JSContext *cx, const JSFunction *fun, JSAutoByteString* bytes)
|
|||
{
|
||||
if (!fun)
|
||||
return Probes::nullName;
|
||||
JSAtom *atom = const_cast<JSAtom*>(fun->atom);
|
||||
if (!atom)
|
||||
if (!fun->atom)
|
||||
return Probes::anonymousName;
|
||||
return bytes->encode(cx, atom) ? bytes->ptr() : Probes::nullName;
|
||||
return bytes->encode(cx, fun->atom) ? bytes->ptr() : Probes::nullName;
|
||||
}
|
||||
|
||||
static const char *
|
||||
|
|
Загрузка…
Ссылка в новой задаче