pike.git/
src/
las.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-11-04
2014-11-04 17:18:06 by Henrik Grubbström (Grubba) <grubba@grubba.org>
f7c890eb07939d978bcdda6c8da9a96f470d7ac2 (
6
lines) (+
5
/-
1
)
[
Show
|
Annotate
]
Branch:
8.0
Compiler: Fixed the NULL-deref some more.
1575:
/* This one always leaves a program if possible */ void resolv_program(node *n) {
-
if (!n) return;
+
if (!n)
{
+
push_int(0);
+
return;
+
}
check_tree(n,0);