integer overflow attempting to store 2186115300
Thrumbar opened this issue ยท 2 comments
Saw this in Bugsack when I was going to log off..
365x integer overflow attempting to store 2186115300
[C]: in function format' Carbonite\NxMap.lua:5534: in function
?'
Carbonite\NxMap.lua:4885: in function `Update'
Carbonite\NxMap.lua:3816: in function <Carbonite\NxMap.lua:3700>
Locals:
InCombatSkipped
This appears to come from Buggrabber 342 to 362
if not errorObject then
local stack = debugstack(3)
-- Scan for version numbers in the stack
for line in stack:gmatch("(.-)\n") do
tmp[#tmp+1] = findVersions(line)
end
-- Store the error
local inCombat = InCombatLockdown() or UnitAffectingCombat("player")
errorObject = {
message = sanitizedMessage,
stack = table.concat(tmp, "\n"),
locals = inCombat and "InCombatSkipped" or debuglocals(3),
session = addon:GetSessionId(),
time = date("%Y/%m/%d %H:%M:%S"),
counter = 1,
}
wipe(tmp)
end