mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-01 13:26:47 +08:00
* resbin.c (bin_to_res_string): Correct adjustment of data and
length. From Ton van Overbeek <tvoverbe@wk.estec.esa.nl>.
This commit is contained in:
parent
fea90b62c1
commit
c88790775d
@ -1,3 +1,8 @@
|
||||
Tue Jul 29 11:06:03 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* resbin.c (bin_to_res_string): Correct adjustment of data and
|
||||
length. From Ton van Overbeek <tvoverbe@wk.estec.esa.nl>.
|
||||
|
||||
Tue Jul 22 18:01:23 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* nlmconv.c (link_inputs): Call libiberty pexecute function.
|
||||
|
@ -667,8 +667,8 @@ bin_to_res_string (data, length, big_endian)
|
||||
s[j] = get_16 (big_endian, data + 2 + j * 2);
|
||||
}
|
||||
|
||||
data += 2 + slen;
|
||||
length -= 2 + slen;
|
||||
data += 2 + 2 * slen;
|
||||
length -= 2 + 2 * slen;
|
||||
}
|
||||
|
||||
r = (struct res_resource *) res_alloc (sizeof *r);
|
||||
|
Loading…
Reference in New Issue
Block a user