|
samishii23
|
Date: 2009-12-18 08:56:31
ID: 53
Error occured in: Global
Count: 1
Message: ..\FrameXML\ChatFrame.lua line 2522:
bad argument #1 to 'strlen'
(string expected, got nil)
Debug:
(tail call): ?
(tail call): ?
[C]: ?
[C]: strlen()
..\FrameXML\ChatFrame.lua:2522:
..\FrameXML\ChatFrame.lua:2501
(tail call): ?
CT_RaidAssist\CT_RaidAssist.lua:4512:
ChatFrame_MessageEventHandler()
..\FrameXML\ChatFrame.lua:2318: CT_RA_oldChatFrame_OnEvent()
CT_RaidAssist\CT_RaidAssist.lua:668: ChatFrame_OnEvent()
[string "*:OnEvent"]:1:
[string "*:OnEvent"]:1
------------------------------------
Will post a list of my addons if needed. I do not have any other Raid support addons enabled currently. Only started after the recent Quickie patch on monday I think it was.
|
|
dargen
|
I think it is another one of your addons that is causing the issue. The last update to CT_RaidAssist was the day the 3.3 WoW patch came out, and even then nothing was changed that is related to the error you got, nor has that part of the addon been changed for quite a while. I'm not getting any error, and no one else has reported anything yet. Did you install any addons recently that you didn't have before?
The error you got deals with the chat frame. Addons often hook into chat frame event related functions to trap whispers in order to look for special key words to trigger something, etc. As addons hook into the chat frame function, a "chain" of addons gets created. Each addon that hooks into the chat frame has to make sure that they pass on all parameter data to the next member of the chain.
The error you are getting looks to be caused by a missing parameter value, which probably means that an addon did not pass all of the data on to the next member of the chain, resulting in CT_RaidAssist not being able to pass on all the data, and then when the ChatFrame function gains control the error occurs. I checked the CT_RaidAssist coding and verified that it passes along all of the parameters data.
The cause of the error does not have to be a raid related addon. It could be any addon that hooks into the game's ChatFrame_OnEvent or ChatFrame_MessageEventHandler functions. It could be a chat addon, or some addon that monitors chat for things like whispers (raid addons, auto invite addons, etc.)
If you post a list of your addons I can see if I can track down the cause of the issue. If this error happens all the time for you, or if you can make it happen by doing something specific (if you can, let me know what you do to make it happen), you could try to work out which addon is involved by disabling addons one at a time until the error stops.
|