* Protect the true',
false' and `__overrides' constants. Without
an ATprotect call, these could be garbage collected, leading to weird crashes or wrong results.
This commit is contained in:
parent
3f9e647ae8
commit
56af8e86e3
|
@ -147,6 +147,7 @@ while (<STDIN>) {
|
||||||
print HEADER "extern ATerm $name;\n";
|
print HEADER "extern ATerm $name;\n";
|
||||||
print IMPL "ATerm $name = 0;\n";
|
print IMPL "ATerm $name = 0;\n";
|
||||||
$init .= " $name = $value;\n";
|
$init .= " $name = $value;\n";
|
||||||
|
$init .= " ATprotect(&$name);\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
elsif (/^\s*init\s+(\w+)\s*$/) {
|
elsif (/^\s*init\s+(\w+)\s*$/) {
|
||||||
|
|
Loading…
Reference in a new issue