diff options
author | Janne Blomqvist <jb@gcc.gnu.org> | 2012-03-25 08:48:49 +0300 |
---|---|---|
committer | Janne Blomqvist <jb@gcc.gnu.org> | 2012-03-25 08:48:49 +0300 |
commit | f4471acbe3a0e4aee9aa8144898c593ff4e7b595 (patch) | |
tree | 685cb6240f35fb0058480526772367ef510d1cba /libgfortran/ChangeLog | |
parent | 0651865170b953c49b8acce8ad6de0143c00fc06 (diff) | |
download | gcc-f4471acbe3a0e4aee9aa8144898c593ff4e7b595.zip gcc-f4471acbe3a0e4aee9aa8144898c593ff4e7b595.tar.gz gcc-f4471acbe3a0e4aee9aa8144898c593ff4e7b595.tar.bz2 |
Use calloc instead of malloc and memset.
2012-03-25 Janne Blomqvist <jb@gcc.gnu.org>
* runtime/memory.c (xcalloc): New function.
* libgfortran.h (xcalloc): New prototype.
* io/list_read.c (push_char): Use xcalloc instead of get_mem and
memset.
(l_push_char): Likewise.
* io/unit.c (insert_unit): Likewise.
(get_internal_unit): Likewise.
* io/unix.c (open_internal): Likewise.
(open_internal4): Likewise.
(fd_to_stream): Likewise.
From-SVN: r185773
Diffstat (limited to 'libgfortran/ChangeLog')
-rw-r--r-- | libgfortran/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index d593134..648f580 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,16 @@ +2012-03-25 Janne Blomqvist <jb@gcc.gnu.org> + + * runtime/memory.c (xcalloc): New function. + * libgfortran.h (xcalloc): New prototype. + * io/list_read.c (push_char): Use xcalloc instead of get_mem and + memset. + (l_push_char): Likewise. + * io/unit.c (insert_unit): Likewise. + (get_internal_unit): Likewise. + * io/unix.c (open_internal): Likewise. + (open_internal4): Likewise. + (fd_to_stream): Likewise. + 2012-03-17 Janne Blomqvist <jb@gcc.gnu.org> PR libfortran/52608 |