jcf-io.c (open_class): Copy 'filename'.
authorColin Walters <walters@redhat.com>
Fri, 6 Apr 2007 14:28:15 +0000 (14:28 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Fri, 6 Apr 2007 14:28:15 +0000 (14:28 +0000)
2007-04-06  Colin Walters  <walters@redhat.com>

https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=161701
* jcf-io.c (open_class): Copy 'filename'.

From-SVN: r123616

gcc/java/ChangeLog
gcc/java/jcf-io.c

index e02257f..83c3207 100644 (file)
@@ -1,3 +1,8 @@
+2007-04-06  Colin Walters  <walters@redhat.com>
+
+       https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=161701
+       * jcf-io.c (open_class): Copy 'filename'.
+
 2007-04-03  Andrew Haley  <aph@redhat.com>
 
         * jvgenmain.c (main): Change main to use class$, not class$$.
index 0c9b07b..10de9d2 100644 (file)
@@ -259,7 +259,7 @@ open_class (const char *filename, JCF *jcf, int fd, const char *dep_name)
       jcf->read_ptr = jcf->buffer;
       jcf->read_end = jcf->buffer_end;
       jcf->read_state = NULL;
-      jcf->filename = filename;
+      jcf->filename = xstrdup (filename);
       if (read (fd, jcf->buffer, stat_buf.st_size) != stat_buf.st_size)
        {
          perror ("Failed to read .class file");