WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
28405
[CURL] Crash when handling local cancelled requests
https://bugs.webkit.org/show_bug.cgi?id=28405
Summary
[CURL] Crash when handling local cancelled requests
Brent Fulgham
Reported
2009-08-17 12:12:04 PDT
The code in Curl's headerCallback processing is not automatically called when processing local files. This has led to a number of bugs (e.g.,
Bug 28312
) in the past. The LayoutTest "fast/images/favicon-as-image.html" (among others) triggers a bug in local file processing when the request is cancelled. This can happen if the local processing involves JavaScript code that modifies the window location. The correction is to check the state of the m_cancelled flag immediately after performing the manual processing, and treating the cancelled state in the same way as any cancelled processing occurring earlier in the routine. This happens in two places: 1. The writeCallback, where a cancelled request should cause a zero-value return. 2. The downloadTimerCallback, where a cancelled request should cause the job to be removed and processing to continue.
Attachments
Check for m_cancelled state before continuing processing of a request.
(2.10 KB, patch)
2009-08-17 12:19 PDT
,
Brent Fulgham
kevino
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Brent Fulgham
Comment 1
2009-08-17 12:19:03 PDT
Created
attachment 34985
[details]
Check for m_cancelled state before continuing processing of a request.
Brent Fulgham
Comment 2
2009-08-17 15:39:20 PDT
Landed in
http://trac.webkit.org/changeset/47379
.
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