summaryrefslogtreecommitdiff
path: root/binutils/resbin.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-10-10 15:54:42 +0000
committerNick Clifton <nickc@redhat.com>2005-10-10 15:54:42 +0000
commit819e56208b88470aa3e522134b4a20fe8c900ab6 (patch)
tree83faba3be94ce06ff78592775664383e6998dee6 /binutils/resbin.c
parent937a9208fe841dc96d10b278770f593de345e5df (diff)
downloadbinutils-redhat-819e56208b88470aa3e522134b4a20fe8c900ab6.tar.gz
* resbin.c (res_to_bin_accelerator): Place the terminating NUL at the correct
location in the bindata structure.
Diffstat (limited to 'binutils/resbin.c')
-rw-r--r--binutils/resbin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/resbin.c b/binutils/resbin.c
index 6ea9338efa..2c20a273a1 100644
--- a/binutils/resbin.c
+++ b/binutils/resbin.c
@@ -1415,7 +1415,7 @@ res_to_bin_accelerator (const struct accelerator *accelerators,
d->data);
put_16 (big_endian, a->key, d->data + 2);
put_16 (big_endian, a->id, d->data + 4);
- put_16 (big_endian, 0, d->data + 8);
+ put_16 (big_endian, 0, d->data + 6);
d->next = NULL;
*pp = d;