2009-01-09 Kai Tietz <kai.tietz@onevision.com>

* coff-pe-read.c (read_pe_exported_syms): Fix typo.
This commit is contained in:
Kai Tietz 2009-01-09 09:33:31 +00:00
parent ecf180db9e
commit 1dac1b4733
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-01-09 Kai Tietz <kai.tietz@onevision.com>
* coff-pe-read.c (read_pe_exported_syms): Fix typo.
2009-01-09 Joel Brobecker <brobecker@adacore.com>
* CONTRIBUTE: Minor reformatting.

View File

@ -223,7 +223,7 @@ read_pe_exported_syms (struct objfile *objfile)
pe_header_offset = pe_get32 (dll, 0x3c);
opthdr_ofs = pe_header_offset + 4 + 20;
if (is_pe64)
num_entries = pe_get32 (dll, opthdr_ofs + 108;
num_entries = pe_get32 (dll, opthdr_ofs + 108);
else
num_entries = pe_get32 (dll, opthdr_ofs + 92);