help-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Memory allocation problem with flex&bison


From: jluceant
Subject: Memory allocation problem with flex&bison
Date: 18 Oct 2006 21:30:30 -0700
User-agent: G2/1.0

Hi groups,

I have a problem using flex to parse a file.

The following rules has been defined:

{space}{alnum}        {
  yylval.string=(char*)strdup(yytext);
  return(ALNUM);
}

But as described in the strdup manual, a memory allocation is done. I
have a leak and I would like to know where to put the free memory
allocation:in the flex code or in the bison code ?

I'm not expert in flex&bison, I need a good help.

José



reply via email to

[Prev in Thread] Current Thread [Next in Thread]