Re: pgAdmin3 svn 4409 on Debian - segfault - Mailing list pgadmin-hackers

From Tomasz Rybak
Subject Re: pgAdmin3 svn 4409 on Debian - segfault
Date
Msg-id 1124724905.7798.5.camel@localhost.localdomain
Whole thread Raw
In response to Re: pgAdmin3 svn 4409 on Debian - segfault  (Andreas Pflug <pgadmin@pse-consulting.de>)
Responses Re: pgAdmin3 svn 4409 on Debian - segfault  (Andreas Pflug <pgadmin@pse-consulting.de>)
List pgadmin-hackers
Dnia 21-08-2005, nie o godzinie 23:27 +0000, Andreas Pflug napisał(a):
> Tomasz Rybak wrote:
> > Dnia 21-08-2005, nie o godzinie 17:26 +0000, Andreas Pflug napisał(a):
> >
>
> >
> >  actionFactory::actionFactory(menuFactoryList *list) : menuFactory(list)
> >  {
> > +       if (list){
> >      id = list->GetCount()+MNU_ACTION -1;
> > +       } else {
> > +               id = 0;
> > +       }
>
> Yes, this fix is correct; the initial tooltipFactory is called with no
> menuFactoryList present, thanks for reporting.

I'm wondering...
If there is list, we make id equal to MNU_ACTION + last_element_of_list.
Shouldn't there be
    id = MNU_ACTION;
instead of
    id = 0;
pgAdmin3 with my fix (id = 0) works, but I'm thinking, if
id is identity of stuff we add to menu, and we make it zero,
we could make some values reused (two menu items have the same id).

In src/include/menu.h there is:
    MNU_ACTION=MNU_NEW+1000 // leave space for objects
which would suggest, that we should add after that.

So - should id be initialised to zero, or MNU_ACTION?

--
Tomasz Rybak <bogomips@post.pl>


pgadmin-hackers by date:

Previous
From: Diego Gil
Date:
Subject: Re: compilation errors: wrong actions SOLVED
Next
From: Andreas Pflug
Date:
Subject: Re: pgAdmin3 svn 4409 on Debian - segfault