This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug libgcj/12254] New: Regression in java networking code
- From: "green at redhat dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 11 Sep 2003 21:14:29 -0000
- Subject: [Bug libgcj/12254] New: Regression in java networking code
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12254
Summary: Regression in java networking code
Product: gcc
Version: 3.4
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: libgcj
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: green at redhat dot com
CC: gcc-bugs at gcc dot gnu dot org
GCC build triplet: i686-pc-linux-gnu
GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu
A simple program to read the contents of a web page now fails with the
following exception. I believ this is related to the recent
gnu.java.net move.
Exception in thread "main" java.lang.NullPointerException
at _Jv_IsInstanceOf
(/opt/spindazzle/gnutools/HEAD-2003-09-11/H-i686-pc-linux-gnulibc2.3/lib/libgcj.so.4.0.0)
at gnu.java.net.PlainSocketImpl.setOption(int, java.lang.Object)
(/opt/spindazzle/gnutools/HEAD-2003-09-11/H-i686-pc-linux-gnulibc2.3/lib/libgcj.so.4.0.0)
at java.net.Socket.getLocalAddress()
(/opt/spindazzle/gnutools/HEAD-2003-09-11/H-i686-pc-linux-gnulibc2.3/lib/libgcj.so.4.0.0)
at java.net.Socket.isBound()
(/opt/spindazzle/gnutools/HEAD-2003-09-11/H-i686-pc-linux-gnulibc2.3/lib/libgcj.so.4.0.0)
at java.net.Socket.connect(java.net.SocketAddress, int)
(/opt/spindazzle/gnutools/HEAD-2003-09-11/H-i686-pc-linux-gnulibc2.3/lib/libgcj.so.4.0.0)
at java.net.Socket.connect(java.net.SocketAddress)
(/opt/spindazzle/gnutools/HEAD-2003-09-11/H-i686-pc-linux-gnulibc2.3/lib/libgcj.so.4.0.0)
at java.net.Socket.Socket(java.net.InetAddress, int, java.net.InetAddress,
int, boolean)
(/opt/spindazzle/gnutools/HEAD-2003-09-11/H-i686-pc-linux-gnulibc2.3/lib/libgcj.so.4.0.0)
at java.net.Socket.Socket(java.net.InetAddress, int)
(/opt/spindazzle/gnutools/HEAD-2003-09-11/H-i686-pc-linux-gnulibc2.3/lib/libgcj.so.4.0.0)
at gnu.gcj.protocol.http.Connection.connect()
(/opt/spindazzle/gnutools/HEAD-2003-09-11/H-i686-pc-linux-gnulibc2.3/lib/libgcj.so.4.0.0)
at gnu.gcj.protocol.http.Connection.getInputStream()
(/opt/spindazzle/gnutools/HEAD-2003-09-11/H-i686-pc-linux-gnulibc2.3/lib/libgcj.so.4.0.0)
at java.net.URL.openStream()
(/opt/spindazzle/gnutools/HEAD-2003-09-11/H-i686-pc-linux-gnulibc2.3/lib/libgcj.so.4.0.0)
at org.spindazzle.sbs.node.Main.main(java.lang.String[])
(/home/green/spindazzle/sdznode/org/spindazzle/sbs/node/Main.java:32)