diff --git a/Userland/Libraries/LibJS/Runtime/VM.h b/Userland/Libraries/LibJS/Runtime/VM.h index 78501e0b1079be3bfb137d45b35079bf5e38ccde..7cbac330fc2d89c247938d214e52b2656a863b89 100644 --- a/Userland/Libraries/LibJS/Runtime/VM.h +++ b/Userland/Libraries/LibJS/Runtime/VM.h @@ -39,7 +39,7 @@ struct ScopeFrame { }; struct CallFrame { - const ASTNode* current_node; + const ASTNode* current_node { nullptr }; FlyString function_name; Value callee; Value this_value;