mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-14 15:59:36 +00:00
libeval_compiler: fix crash when preflighting method calls with 0 arguments
This commit is contained in:
parent
8a5297180e
commit
712215fe12
@ -805,11 +805,17 @@ bool COMPILER::generateUCode( UCODE* aCode, CONTEXT* aPreflightContext )
|
||||
if( func )
|
||||
{
|
||||
// Preflight the function call
|
||||
wxString paramStr = *node->leaf[1]->leaf[1]->value.str;
|
||||
VALUE* param = aPreflightContext->AllocValue();
|
||||
auto argsLeaf = node->leaf[1]->leaf[1];
|
||||
wxString paramStr;
|
||||
|
||||
param->Set( paramStr );
|
||||
aPreflightContext->Push( param );
|
||||
if( argsLeaf->op != TR_NULL ) // function has an argument
|
||||
{
|
||||
paramStr = *node->leaf[1]->leaf[1]->value.str;
|
||||
VALUE* param = aPreflightContext->AllocValue();
|
||||
|
||||
param->Set( paramStr );
|
||||
aPreflightContext->Push( param );
|
||||
}
|
||||
|
||||
aPreflightContext->SetErrorCallback(
|
||||
[&]( const wxString& aMessage, int aOffset )
|
||||
|
Loading…
Reference in New Issue
Block a user