summaryrefslogtreecommitdiff
path: root/www/apache-jserv/files/patch-af
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2000-02-10 14:19:22 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2000-02-10 14:19:22 +0000
commitc6e27288e44dcd7d239e6e3f08277ac1038dc627 (patch)
tree2aa19bfcc4aa3c6f3fb8c10775ca66f5011af757 /www/apache-jserv/files/patch-af
parentTell the user that they're doing something wrong when USA_RESIDENT is (diff)
Update to v1.1.
Submitted by: greg@greg.rim.or.jp (Kensaku Masuda) PR: ports/16600 # I don't like to use directory ${PREFIX}/docs. But it seems it is # difficult to move it to somewhere.
Notes
Notes: svn path=/head/; revision=25644
Diffstat (limited to 'www/apache-jserv/files/patch-af')
-rw-r--r--www/apache-jserv/files/patch-af30
1 files changed, 30 insertions, 0 deletions
diff --git a/www/apache-jserv/files/patch-af b/www/apache-jserv/files/patch-af
new file mode 100644
index 000000000000..6e055125da78
--- /dev/null
+++ b/www/apache-jserv/files/patch-af
@@ -0,0 +1,30 @@
+--- src/java/org/apache/java/lang/AdaptiveClassLoader.java.orig Tue Feb 8 18:37:01 2000
++++ src/java/org/apache/java/lang/AdaptiveClassLoader.java Tue Feb 8 20:33:18 2000
+@@ -661,7 +661,18 @@
+ ZipEntry entry = zipfile.getEntry(name);
+
+ if (entry != null) {
+- return zipfile.getInputStream(entry);
++ InputStream stream = zipfile.getInputStream(entry);
++ byte data[] = new byte[(int)entry.getSize()];
++ for(int i = 0 ; i < data.length ;) {
++ int size = stream.read(data, i, data.length - i);
++ if(size < 0) {
++ stream.close();
++ return null;
++ }
++ i += size;
++ }
++ stream.close();
++ return new ByteArrayInputStream(data);;
+ } else {
+ return null;
+ }
+@@ -671,6 +682,7 @@
+ if ( zipfile != null ) {
+ try {
+ zipfile.close();
++ zipfile = null;
+ } catch ( IOException ignored ) {
+ }
+ }