I've committed this patch which corrects a problem with table reallocation in the new section table implementation. readElfFile was giving out addresses into textSections which gets realloc'ed when full. The addresses previously handed out then become invalid. This patch changes the algorithm to allocate a separate section table for each load and to give out the address only after the table has been completed. Dave