forked from Imagelibrary/binutils-gdb
* 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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user