From: jvdelisle Date: Wed, 17 Feb 2016 16:48:57 +0000 (+0000) Subject: 2016-02-17 Jerry DeLisle X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=467a213a934887179cb62c5cd29d90d06ffdef4b;p=thirdparty%2Fgcc.git 2016-02-17 Jerry DeLisle PR libgfortran/69651 * io/list_read.c (push_char4): Fix the pointer usage for xrealloc. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@233500 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 5120a433f29b..436b598443aa 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2016-02-17 Jerry DeLisle + + PR libgfortran/69651 + * io/list_read.c (push_char4): Fix the pointer usage for xrealloc. + 2016-02-15 Jerry DeLisle PR libgfortran/69651 diff --git a/libgfortran/io/list_read.c b/libgfortran/io/list_read.c index fcd4b6e25e97..bebdd8cf3013 100644 --- a/libgfortran/io/list_read.c +++ b/libgfortran/io/list_read.c @@ -119,7 +119,10 @@ push_char4 (st_parameter_dt *dtp, int c) if (dtp->u.p.saved_used >= dtp->u.p.saved_length) { dtp->u.p.saved_length = 2 * dtp->u.p.saved_length; - p = xrealloc (p, dtp->u.p.saved_length * sizeof (gfc_char4_t)); + dtp->u.p.saved_string = + xrealloc (dtp->u.p.saved_string, + dtp->u.p.saved_length * sizeof (gfc_char4_t)); + p = (gfc_char4_t *) dtp->u.p.saved_string; } p[dtp->u.p.saved_used++] = c;