diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-02-21 19:44:01 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-02-21 19:44:01 +0000 |
commit | 9eb5f4b8c6f4a29496822d8762dc4e3b46ab152b (patch) | |
tree | 1ce02286ca067e80367c5689146c79fc911aeb0f /gas/read.c | |
parent | fdf08b0fff8e8155a6fb9b6bfb9e0bb8c31ec6db (diff) | |
download | gdb-9eb5f4b8c6f4a29496822d8762dc4e3b46ab152b.zip gdb-9eb5f4b8c6f4a29496822d8762dc4e3b46ab152b.tar.gz gdb-9eb5f4b8c6f4a29496822d8762dc4e3b46ab152b.tar.bz2 |
* read.c (read_a_source_file): Use correct arguments to memcpy
(broken 19 Jul 1993). From kjd@pescadero.stanford.edu (Kenneth
Duda).
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -633,7 +633,7 @@ read_a_source_file (name) num = buffer_limit - buffer; tmp_buf = xrealloc (tmp_buf, tmp_len + num); - memcpy (tmp_buf, buffer + tmp_len, num); + memcpy (tmp_buf + tmp_len, buffer, num); tmp_len += num; } while (!ends); |