Commit bb9db7b1 by Bud Davis Committed by Bud Davis

re PR libfortran/16080 (segmentation fault when reading empty string)

2004-06-19  Bud Davis  <bdavis9659@comcast.net>

        PR gfortran/16080
        * io/list_read.c(set_value): fixed spelling.

From-SVN: r83389
parent 04b0faec
2004-06-19 Bud Davis <bdavis9659@comcast.net>
PR gfortran/16080
* io/list_read.c(set_value): fixed spelling.
2004-06-19 Bud Davis <bdavis9659@comcast.net>
PR gfortran/16080
* io/list_read.c(set_value): don't copy if the string is null.
2004-06-14 Bud Davis <bdavis9659@comcast.net>
......
......@@ -1318,7 +1318,7 @@ set_value:
m = (len < saved_used) ? len : saved_used;
memcpy (p, saved_string, m);
}
else /* just delimeters encountered, nothing to copy but SPACE */
else /* just delimiters encountered, nothing to copy but SPACE */
m = 0;
if (m < len)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment