Fix memory corruption when using -R; the values being stored in the list
weren't freeable when they should have been.
This commit is contained in:
parent
e976e10708
commit
245478a030
|
@ -223,7 +223,7 @@ static void set_Rflag(char* argp)
|
||||||
}
|
}
|
||||||
else if (*eos == '=')
|
else if (*eos == '=')
|
||||||
{
|
{
|
||||||
t_cont(*prog)->t_prog = eos + 1;
|
t_cont(*prog)->t_prog = keeps(eos + 1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue