Tencent / LuaHelper

LuaHelper is a High-performance lua VSCode plugin, Language Server Protocol for lua.
Other
633 stars 94 forks source link

修复长字符串开始标记找不到导致栈溢出的 crash #102

Closed lalawue closed 2 years ago

lalawue commented 2 years ago

例子如下

local a = [=[123]=]

删除第一个 [ 后如下

local a = [=123]=]

导致 scanLongString() 栈溢出导致的 crash

yinfei8 commented 2 years ago

非常感谢!