This is the mail archive of the
java-prs@gcc.gnu.org
mailing list for the Java project.
[Bug java/18091] Valgrind errors building libjava
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: java-prs at gcc dot gnu dot org
- Date: 20 Oct 2004 20:24:30 -0000
- Subject: [Bug java/18091] Valgrind errors building libjava
- References: <20041020200437.18091.drow@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-20 20:24 -------
This is definitely a bug:
/* Concatenate current package prefix with new sfname. */
char *buf = xmalloc (i+new_len+3);
/* Replace '.' by DIR_SEPARATOR. */
for (; i >= 0; i--)
{
if (buf[i] == '.')
buf[i] = DIR_SEPARATOR;
}
This could cause problems.
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2004-10-20 20:24:29
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18091