ldmud/test/t-python/testcompiler.c
Alexander Motzkau b3c3da3ffb Fixed a bug in type deduction of python efun calls.
When calling python efuns the expression return type
was left uninitialized, resulting in errors or even
crashs when that type was evaluated.
2018-01-30 23:27:00 +01:00

9 lines
124 B
C

int type_test()
{
// This just shouldn't crash the LPC compiler.
return python_return()->next;
}
void create()
{
}