diff --git a/Userland/Libraries/LibJS/Runtime/VM.h b/Userland/Libraries/LibJS/Runtime/VM.h index 78501e0b107..7cbac330fc2 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;