RESOLVED FIXED 39681
Web Inspector: Fixes chromium crasher due to passing an empty handle to toWebCoreString()
https://bugs.webkit.org/show_bug.cgi?id=39681
Summary Web Inspector: Fixes chromium crasher due to passing an empty handle to toWeb...
jaimeyap
Reported 2010-05-25 11:51:36 PDT
toWebCoreString() in V8Binding.cpp in WebCore will null pointer deref if passed an empty handle. Sometimes when invoking ScriptCallStack::callLocation(), we would get an empty handle for the script name. See: http://code.google.com/p/chromium/issues/detail?id=45004
Attachments
Fixes http://code.google.com/p/chromium/issues/detail?id=45004 (2.02 KB, patch)
2010-05-25 11:59 PDT, jaimeyap
pfeldman: review+
Returns "" instead of asking toWebCoreString() to stringify Undefined. (1.99 KB, patch)
2010-05-25 12:42 PDT, jaimeyap
pfeldman: review+
Pavel Feldman
Comment 2 2010-05-25 12:05:48 PDT
Comment on attachment 57035 [details] Fixes http://code.google.com/p/chromium/issues/detail?id=45004 WebCore/bindings/v8/ScriptCallStack.cpp:75 + *functionName = toWebCoreString(functionNameValue.IsEmpty() ? v8::Undefined() : functionNameValue); You know what toWebCoreString from undefined will look like? (I am not sure). Is that what you need?
jaimeyap
Comment 3 2010-05-25 12:42:11 PDT
Created attachment 57037 [details] Returns "" instead of asking toWebCoreString() to stringify Undefined.
Tony Chang
Comment 4 2010-05-26 19:16:04 PDT
Note You need to log in before you can comment on or make changes to this bug.