Opened 7 years ago

Closed 7 years ago

#782 closed bug (fixed)

memleak in return(list(newstruct))

Reported by: ren Owned by: somebody
Priority: minor Milestone: 4-1-0 and higher
Component: dontKnow Version: 4-0-3
Keywords: Cc:

Description

Example:

newstruct("foo","int bar");

proc sss()
{
  return (d);
}

proc ttt()
{
  return (list(sss()));
}

foo d;
list L;
for (int i=1; i<=100; i++)
{
  L = ttt();
  memory(0);
}

Noticed the same leak with objects of type cone, I suspect this to be a problem of the blackbox framework.

Change History (1)

comment:1 Changed 7 years ago by hannes

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.