Closed
Bug 203344
Opened 22 years ago
Closed 21 years ago
Small optimisation in nsJARChannel: prevents creation/deletion of ZipItem object
Categories
(Core :: Networking, defect)
Core
Networking
Tracking
()
VERIFIED
FIXED
People
(Reporter: alfredkayser, Assigned: alfredkayser)
References
Details
Attachments
(1 file)
868 bytes,
patch
|
darin.moz
:
review+
alecf
:
superreview+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4b) Gecko/20030414
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4b) Gecko/20030414
Patch follows
Reproducible: Always
Steps to Reproduce:
Assignee | ||
Comment 1•22 years ago
|
||
Replace GetEntry with Available, no object creation/deletion,
just the content-length. As Available is here called directly
after opening the stream the returned value is always the real content-length.
Assignee | ||
Updated•22 years ago
|
Attachment #121677 -
Flags: superreview?(alecf)
Attachment #121677 -
Flags: review?(darin)
Comment 2•22 years ago
|
||
Comment on attachment 121677 [details] [diff] [review]
Simple and easy patch
yup, i like it. this prevents the JAR channel from having to deal directly
with nsIZipEntry :-)
r=darin
Attachment #121677 -
Flags: review?(darin) → review+
Comment 3•22 years ago
|
||
over to alfred
Assignee: darin → alfredkayser
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 4•22 years ago
|
||
Comment on attachment 121677 [details] [diff] [review]
Simple and easy patch
sr=alecf
I wonder if this will allow us to stop #including nsIZipEntry somewhere.
Attachment #121677 -
Flags: superreview?(alecf) → superreview+
Assignee | ||
Comment 5•22 years ago
|
||
Created bug 203627 for nsIZipEntry removal investigation.
How to apply the patch? Do I need to request CVS access, and then
cvs it into the tree?
No longer blocks: 203627
Status: NEW → ASSIGNED
Comment 6•22 years ago
|
||
I'll check this in when the tree opens today.
Comment 7•21 years ago
|
||
Checked in. Sorry it took me so long.
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Comment 8•21 years ago
|
||
Quick question: this doesn't depend on uncompressed entries, like Java does?
Assignee | ||
Comment 9•21 years ago
|
||
No, this is about how to get the actual content length of the item,
and 'Available' just returns that (when called directly after opening).
Comment 10•21 years ago
|
||
OK, I only ask because Java's InflaterInputStream.available() doesn't always.
Assignee | ||
Updated•17 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•