mirror of
https://github.com/openRuyi-Project/gcc.git
synced 2026-06-27 22:05:52 +00:00
re PR libgcj/21074 (Trivial bug in the method getHeaderFieldKey() in the file java/net/protocol/http/HTTPURLConnection.java)
2005-06-15 Goffredo Baroncelli <kreijack@inwind.it> PR libgcj/21074: * gnu/java/net/protocol/http/HTTPURLConnection.java (getHeaderFieldKey): Check index. From-SVN: r100994
This commit is contained in:
committed by
Tom Tromey
parent
14643af3f8
commit
3eee5bf485
@@ -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++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user