From: Goffredo Baroncelli Date: Wed, 15 Jun 2005 20:08:27 +0000 (+0200) Subject: re PR libgcj/21074 (Trivial bug in the method getHeaderFieldKey() in the file java... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3eee5bf485a0f505356e138b7275b5169b5cff1d;p=gcc.git re PR libgcj/21074 (Trivial bug in the method getHeaderFieldKey() in the file java/net/protocol/http/HTTPURLConnection.java) 2005-06-15 Goffredo Baroncelli PR libgcj/21074: * gnu/java/net/protocol/http/HTTPURLConnection.java (getHeaderFieldKey): Check index. From-SVN: r100994 --- diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 813eef1db91..d2653a42328 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,9 @@ +2005-06-15 Goffredo Baroncelli + + PR libgcj/21074: + * gnu/java/net/protocol/http/HTTPURLConnection.java + (getHeaderFieldKey): Check index. + 2005-06-15 Tom Tromey PR libgcj/21906: diff --git a/libjava/gnu/java/net/protocol/http/HTTPURLConnection.java b/libjava/gnu/java/net/protocol/http/HTTPURLConnection.java index 50a6ed12e7a..b82d30f5ae6 100644 --- a/libjava/gnu/java/net/protocol/http/HTTPURLConnection.java +++ b/libjava/gnu/java/net/protocol/http/HTTPURLConnection.java @@ -1,5 +1,5 @@ /* HTTPURLConnection.java -- - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -572,6 +572,10 @@ public class HTTPURLConnection int count = 1; do { + if (!i.hasNext()) + { + return null; + } entry = (Map.Entry) i.next(); count++; }