WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
16487
KURL doesn't preserve isNull when constructed with a DeprecatedString
https://bugs.webkit.org/show_bug.cgi?id=16487
Summary
KURL doesn't preserve isNull when constructed with a DeprecatedString
Brett Wilson (Google)
Reported
2007-12-17 14:48:40 PST
This means for this code: KURL empty; KURL second(empty.url()); then empty.isNull() != second.isNull(). This is the pattern executed in DocLoader::requestResource when it does completeURL(). See
bug 16480
for this extra string->KURL conversion. The issue is that if completeURL generated an empty KURL, the urlString will be NULL (as in fast/loader/simultaneous-reloads-assert.html where the base is a data: URL), and then completeURL will convert it to a [Depricated]String, which will then be used to create a new KURL that is now empty but not NULL. This masks
bug 16485
, where DocLoader::checkForReload will crash if the string isNull.
Attachments
Add attachment
proposed patch, testcase, etc.
Darin Adler
Comment 1
2008-02-16 08:18:37 PST
http://trac.webkit.org/projects/webkit/changeset/30243
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