mirror of
https://github.com/ldmud/ldmud
synced 2026-08-12 14:26:05 -04:00
When calling python efuns the expression return type was left uninitialized, resulting in errors or even crashs when that type was evaluated.
9 lines
124 B
C
9 lines
124 B
C
int type_test()
|
|
{
|
|
// This just shouldn't crash the LPC compiler.
|
|
return python_return()->next;
|
|
}
|
|
|
|
void create()
|
|
{
|
|
}
|