From f1fd6bd87668cdb4af820b32a9e73f7ae9eeb308 Mon Sep 17 00:00:00 2001 From: Mayank Jethva Date: Wed, 27 May 2015 20:10:00 +0200 Subject: [PATCH] Bug 1168103 - "Execution cannot reach the expression "?unknown?" inside this statement in jsfriendapi.cpp". r=evilpies --- js/src/jsfriendapi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/jsfriendapi.cpp b/js/src/jsfriendapi.cpp index f0d64d842ad..2396b6bbd71 100644 --- a/js/src/jsfriendapi.cpp +++ b/js/src/jsfriendapi.cpp @@ -785,7 +785,7 @@ FormatFrame(JSContext* cx, const ScriptFrameIter& iter, char* buf, int num, name ? name :"", name ? " = " : "", arg.isString() ? "\"" : "", - value ? value : "?unknown?", + value, arg.isString() ? "\"" : ""); if (!buf) return buf;