pike.git/
src/
program.c
Branch:
Tag:
Non-build tags
All tags
No tags
2013-06-17
2013-06-17 11:24:19 by Arne Goedeke <el@laramies.com>
9b4f21aeece0111c0d246dbbd7b82e6296c85a9b (
7
lines) (+
6
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
fixed pike_type leak
3863:
* not get overloaded for the ::-operator to work. */ prog->identifier_references[j].id_flags |= ID_LOCAL;
+
{
+
struct pike_type * temp = type;
type = or_pike_types(type, id->type, 1);
-
+
if (temp) free_type(temp);
+
}
#ifdef COMPILER_DEBUG fprintf(stderr, "type: "); simple_describe_type(id->type);