Re: [dbghelp] continue dwarf support

2005-10-13 Thread Eric Pouech
Raphael wrote: but it's of no use with the patch you sent, so why clobber the patch with this ? no because i think its better to avoid assert in this case on dbghelp code :) But if you prefer i can restore original code IMO the correct fix would in field insertion to return one of three valu

Re: [dbghelp] continue dwarf support

2005-10-13 Thread Raphael
> but it's of no use with the patch you sent, so why clobber the patch > with this ? no because i think its better to avoid assert in this case on dbghelp code :) But if you prefer i can restore original code > A+ Regards, Raphael pgpUAB1PaRkR3.pgp Description: PGP signature

Re: [dbghelp] continue dwarf support

2005-10-11 Thread Eric Pouech
Raphael wrote: On Monday 10 October 2005 21:27, Eric Pouech wrote: BOOL symt_add_udt_element(struct module* module, struct symt_udt* assert(m->symt.tag == SymTagData); if (m->hash_elt.name[0] == name[0] && strcmp(m->hash_elt.name, name) == 0) -return TRUE; +

Re: [dbghelp] continue dwarf support

2005-10-10 Thread Raphael
On Monday 10 October 2005 21:27, Eric Pouech wrote: > > BOOL symt_add_udt_element(struct module* module, struct symt_udt* > assert(m->symt.tag == SymTagData); > > if (m->hash_elt.name[0] == name[0] && strcmp(m->hash_elt.name, > > name) == 0) -return TRUE; > > +

Re: [dbghelp] continue dwarf support

2005-10-10 Thread Eric Pouech
Raphael wrote: Hi, Changelog: - begin of dwarf debug lines parsing - better robustness - support of unamed syms - better traces TODO: - find a clean way to handle forward declarations - debug lines parsing Index: type.c ===