 |
 |
Satanic Error Message
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Oct 2004
Location: Mesa, AZ
Status:
Offline
|
|
Has anyone ever seen this message, it has happened to me twice when I logout, it pops up, I can hit ok on the message and then log back in. I have no idea what it means though, defintely up the programmer alley for sure. Here it is....
Internal Error
*** -[NSCFArray objectAtIndex:]: index (-1) beyond bounds (1)
There she is, anyone know what the devil is trying to communicate to me?
|
|
|
| |
|
|
|
 |
|
 |
|
Clinically Insane
Join Date: Oct 2001
Location: San Diego, CA, USA
Status:
Offline
|
|
Do you have any background programs running?
And do you mean it appears on the login screen, or that it appears when you press "Log Out"?
|
|
Chuck
___
"Instead of either 'multi-talented' or 'multitalented' use 'bisexual'."
|
| |
|
|
|
 |
|
 |
|
Posting Junkie
Join Date: Dec 2000
Status:
Offline
|
|
That's an exception. Nothing satanic about it.
It would help to know what app the message is coming from...
|
|
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Oct 2004
Location: Mesa, AZ
Status:
Offline
|
|
appears after I log out, right when the login screen reappears
|
|
|
| |
|
|
|
 |
|
 |
|
Professional Poster
Join Date: Oct 2001
Location: London
Status:
Offline
|
|
It's a bug. It's an application is asking for an object in an array (a list of objects) that does not exist.
You don't need to worry about it - but you might want to notify the author of the app = you can find which app it was by looking at the part before the colon.
|
|
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Oct 2004
Location: Mesa, AZ
Status:
Offline
|
|
weird, thanks for the help
|
|
|
| |
|
|
|
 |
|
 |
|
Clinically Insane
Join Date: Nov 1999
Status:
Offline
|
|
That's definitely an application bug, and it's definitely coming from a Cocoa app. I can't say exactly what is causing the error, but the most likely situation is that it's going backwards through a list of something, but not stopping at the beginning (remember, it's going backwards) for some reason. When it tries to go past the beginning, it runs into problems, and that's when this message would be printed.
Without more information I can't even really say who to send the bug report to; this might be an Apple thing, but it might not. Try logging out without having any apps running; does the error still show up? If not, then we can try and narrow this down to a specific app. If it still happens, though, then we've got our work cut out for us.
You say that you see it right when you log in again; I don't know if LoginWindow.app (which is the app you use to log in) is Cocoa or not, but do you by any chance have it showing the list of users, where you click on one and then type in its password? If so, how many users are in that list?
|
|
You are in Soviet Russia. It is dark. Grue is likely to be eaten by YOU!
|
| |
|
|
|
 |
|
 |
|
Professional Poster
Join Date: Oct 2001
Location: London
Status:
Offline
|
|
It's probably some code that says 'get me the item in the array whose index is x' where x is equal to the selected row of a tableView.
When there is no row selected then -(int)selectedRow returns -1
Can you post what is logged in the console before and after the error?
|
|
|
| |
|
|
|
 |
|
 |
|
Addicted to MacNN
Join Date: Mar 2000
Location: London, UK
Status:
Offline
|
|
Originally posted by Millennium:
I don't know if LoginWindow.app (which is the app you use to log in) is Cocoa or not
Code:
gonzales:~ finlay$ otool -L /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow
...
/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa (compatibility version 1.0.0, current version 9.0.0)
...
gonzales:~ finlay$
|
|
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Oct 2004
Location: Mesa, AZ
Status:
Offline
|
|
just one user that I log in with and its me, I click on my user, type my password in and thats it, but like i said again, this pops up before the login screen, seconds before, I click ok on it and login. Who knows whats going on here, not me, but I guess as long as its not hurting anything I shouldnt worry too much.
|
|
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Nov 2003
Location: On a West Indian Island.
Status:
Offline
|
|
You know, the whole Macintosh platform seems to be satanic, according to Mr. Paley:
http://apfelwiki.de/wiki/Main/RichardPaley
(it's a German site, but the only one I found that still has the text (in English!).)
|
|
Scarcely pausing for breath, Vroomfondel shouted, "We DON'T demand solid facts! What we demand is the total ABSENCE of solid facts. I demand that I may or may not be Vroomfondel!"
|
| |
|
|
|
 |
|
 |
|
Clinically Insane
Join Date: Oct 2001
Location: San Diego, CA, USA
Status:
Offline
|
|
Originally posted by HOMBRESINIESTRO:
(it's a German site, but the only one I found that still has the text (in English!).)
This page appears to have the original, full text.
|
|
Chuck
___
"Instead of either 'multi-talented' or 'multitalented' use 'bisexual'."
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Nov 2003
Location: On a West Indian Island.
Status:
Offline
|
|
Originally posted by Chuckit:
This page appears to have the original, full text.
hhm. I get redirected to www.web1000.com. :-/
|
|
Scarcely pausing for breath, Vroomfondel shouted, "We DON'T demand solid facts! What we demand is the total ABSENCE of solid facts. I demand that I may or may not be Vroomfondel!"
|
| |
|
|
|
 |
|
 |
|
Senior User
Join Date: Aug 2003
Location: united states empire
Status:
Offline
|
|
I get the same error in my loginwindow as well! It only seems to happen when I accidentally click something that's not clickable in or near the login window.
I thought it started when I installed an alarm clock daemon for iTunes, but now I am not so sure...
|
|
|
| |
|
|
|
 |
|
 |
|
Clinically Insane
Join Date: Oct 2001
Location: San Diego, CA, USA
Status:
Offline
|
|
Originally posted by HOMBRESINIESTRO:
hhm. I get redirected to www.web1000.com. :-/
It works both at home and at work for me. They must have a ban on your ISP or something.
|
|
Chuck
___
"Instead of either 'multi-talented' or 'multitalented' use 'bisexual'."
|
| |
|
|
|
 |
|
 |
|
Dedicated MacNNer
Join Date: Oct 2004
Location: Mesa, AZ
Status:
Offline
|
|
thanks for the input guys, much appreciated
|
|
|
| |
|
|
|
 |
|
 |
|
Clinically Insane
Join Date: Dec 1999
Status:
Offline
|
|
Originally posted by CharlesS:
That's an exception. Nothing satanic about it.
It would help to know what app the message is coming from...
Hell.
|
|
"…I contend that we are both atheists. I just believe in one fewer god than
you do. When you understand why you dismiss all the other possible gods,
you will understand why I dismiss yours." - Stephen F. Roberts
|
| |
|
|
|
 |
 |
|
 |
|
|
|
|
|

|
|
 |
Forum Rules
|
 |
 |
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
|
HTML code is Off
|
|
|
|
|
|
 |
 |
 |
 |
|
 |
|