WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED WORKSFORME
Bug 113561
[WinCE]checkForHTTPStatusCodeError() in SubresourceLoader::didReceiveResponse causes CRASH in ResourceHandle::onRequestComplete
https://bugs.webkit.org/show_bug.cgi?id=113561
Summary
[WinCE]checkForHTTPStatusCodeError() in SubresourceLoader::didReceiveResponse...
Chen Zhixiang
Reported
2013-03-29 01:11:19 PDT
Test: use a html in which sub resources are not available: <html> <head> <link href="Not-Existed.css" rel="stylesheet"> </head> <body> Test </body> </html> WinCELauncher will crash on loading this html.
Attachments
Add attachment
proposed patch, testcase, etc.
Chen Zhixiang
Comment 1
2013-03-29 01:28:34 PDT
Reason for this bug: 1) When loading a sub resource(Not-Existed.css) from a main html, SubresourceLoader::didReceiveResponse will be called in ResourceHandle::onRequestComplete(), but checkForHTTPStatusCodeError() in SubresourceLoader::didReceiveResponse may deref itself, which causes delete call to ResourceHandleClient* client(), so MUST provide a protector to surrond the 3 calls: resourceHandleClient->didReceiveResponse resourceHandleClient->didReceiveData resourceHandleClient->didFinishLoading 2) SubresourceLoader::didReceiveResponse may get 404 error, in which situation any following action should be stopped, so we need to check this error, and return false ahead if needed.
Chen Zhixiang
Comment 2
2013-03-29 01:32:26 PDT
But, if we think more deeper, we should find ResourceHandle::onRequestComplete() impl. in Source\WebCore\platform\network\win\ResourceHandleWin.cpp is really not clean. If resourceHandleClient->didReceiveResponse really deletes resourceHandleClient itself, it should get the next client() call return 0.
Patrick R. Gansterer
Comment 3
2013-04-06 08:18:46 PDT
I tried this with current trunk, but can't reproduce your problem. client() will return 0, when the request has been canceled.
Patrick R. Gansterer
Comment 4
2013-09-22 13:08:25 PDT
Please feel free to reopen the bug if you still see the problem.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug