Non-hidden login items cannot be deselected when clicking desktop

I have 2 login items (terminal and Firefox) if either or both is not hidden then after logging in I cannot get the Finder menu bar to appear when clicking the desktop background. If both are hidden then I can get the Finder menu to so appear.
This just seems like a silly bug to me. I looked in vain for how to report this to Apple but was unable to find out how to (I am registered on ADC but haven't looked there yet)

To report bugs to apple, go to http://www.apple.com/feedback/ and select your product (in this case OS X). Select Bug Report under feedback type and include all of the details. As for the actual problem...I have no idea why it is happening!

Similar Messages

  • Cannot send email when clicking lonk on web page

    I cannot send email when clicking link on web page. 
    When I would click the link to send via email I was being directed to hotmail to open new account.
    Today the tech tried to assist me and completely messed up my email capabilities by setting up
    windows live account.
    I am thoroughly disgusted with FIOS internet services..Every time I've called them in the past month problem has been with someone else whose portal services they are using.
    I cannot send emails because all my contact information cannot be moved.
    I'm paying for FIOS internet service that is almost non existent.
    THe VZ in home agent doesn't work nor does the FIOS information site.
    My next move is to get rid of FIOS.
    They create more problems then they solve with me.

    If I understand your problem correctly, you are having trouble when clicking on a MailTo link on any webpage? What loads when you click this type of link is a setting in your browser. If you tell us what browser you are using, we can try to direct you to the setting.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • Hidden login items not working

    Hello I currently have both messages and email open at startup. I wanted to make them open without opening a window so i selected "hide" in login items; however, for some reason this does not work. I got email to hide but messages wouldn't. But now messages will hide and email will not.

    Instead of dragging, click on the + button, navigate to Quicksilver, and add it.

  • Adding an item to a List when clicking a WebPart Properties 'OK' button

    Hi all,
    I wonder if someone can help me. Im new to SharePoint Programming but learning slowly. 
    I have a superb Web Part downloaded from Codeplex which essentially is a Countdown Timer in jQuery. (spCountdown) The code itself works perfectly however I want to tweak it, in what I thought would be a relatively easy thing to do.
    In the Web Part properties of the solution, there is a textbox where you enter the Date/Time which you wish to set the countdown timer. When I click 'OK' to submit the WebPart, I would like the date value in the textbox to be added to a List as a new List
    item. I've got the code to add the List item (or what im think is the correct code) but what I cant do is get the function to execute when the WebPart 'OK' button is clicked. 
    Now, I have downloaded the source code which is available but I cant fathom how to hook the 'Update List Item' code onto the onclick event of the button (as I cant find an onclick event!). Any help to advise me what to do would be appreciated.
    My code to add the date to the new List:
    // create item in Deadline Configuration List
    using (SPSite oSiteCollection = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb oWeb = oSiteCollection.OpenWeb())
    SPList oList = oWeb.Lists["DLConfig"];
    SPListItem oListItem = oList.Items.Add();
    oListItem["Title"] = "Deadline Date";
    oListItem["TaskDueDate"] = new DateTime(WebPart.TargetDate.Year, WebPart.TargetDate.Month, WebPart.TargetDate.Day);
    oWeb.AllowUnsafeUpdates = true;
    oListItem.Update();
    Original WebPart Code:
    SPCountdownWebpart.cs
    using System;
    using System.ComponentModel;
    using System.Web.UI.WebControls.WebParts;
    namespace SPCountdown.SPCountdownWebPart
    [ToolboxItemAttribute(false)]
    public class SPCountdownWebPart : WebPart
    // Visual Studio might automatically update this path when you change the Visual Web Part project item.
    private const string _ascxPath = @"~/_CONTROLTEMPLATES/SPCountdown/SPCountdownWebPart/SPCountdownWebPartUserControl.ascx";
    protected override void CreateChildControls()
    var control = Page.LoadControl(_ascxPath);
    if (control != null)
    ((SPCountdownWebPartUserControl)control).WebPart = this;
    Controls.Add(control);
    [Category("Countdown Settings"),
    Personalizable(PersonalizationScope.Shared),
    WebBrowsable(true),
    WebDisplayName("Target Date/Time"),
    WebDescription("Please enter the target date/time for countdown.")]
    public DateTime TargetDate { get; set; }
    SPCountdownWebpartUserControl.cs
    using System;
    using System.Web.UI;
    using Microsoft.SharePoint;
    namespace SPCountdown.SPCountdownWebPart
    public partial class SPCountdownWebPartUserControl : UserControl
    public SPCountdownWebPart WebPart { get; set; }
    public SPCountdownWebPartUserControl()
    PreRender += SPCountdownWebPartUserControl_PreRender;
    void SPCountdownWebPartUserControl_PreRender(object sender, EventArgs e)
    // parse date from properties
    var targetDateString = string.Format("{0},{1},{2},{3},{4},{5}",
    WebPart.TargetDate.Year,
    WebPart.TargetDate.Month - 1, //uses 0-based index
    WebPart.TargetDate.Day,
    WebPart.TargetDate.Hour,
    WebPart.TargetDate.Minute,
    WebPart.TargetDate.Second);
    // js sources
    const string jqueryScript = "<script type='text/javascript' src='/_layouts/SPCountdown/js/jquery-1.10.2.min.js'></script>";
    const string countdownScript = "<script type='text/javascript' src='/_layouts/SPCountdown/js/jquery.countdown.min.js'></script>";
    // create javascript implementing countdown
    const string jsCountdownFormat = "<script type='text/javascript'>$(function () {{var targetDate = new Date({0});$('#defaultCountdown').countdown({{until: targetDate}});}});</script>";
    var jsCountdown = string.Format(jsCountdownFormat, targetDateString);
    // register client scripts
    var cs = Page.ClientScript;
    if (!cs.IsClientScriptBlockRegistered("jQuery"))
    cs.RegisterClientScriptBlock(
    GetType(),
    "jQuery",
    jqueryScript);
    if (!cs.IsClientScriptBlockRegistered("jsCountdownScript"))
    cs.RegisterClientScriptBlock(
    GetType(),
    "jsCountdownScript",
    countdownScript);
    if (!cs.IsClientScriptBlockRegistered("jsCountdown"))
    cs.RegisterClientScriptBlock(
    GetType(),
    "jsCountdown",
    jsCountdown);
    protected void Page_Load(object sender, EventArgs e)
    Can anyone help me with where I need to implement my code to get the List Item to be created when the Web Part properties are set?
    Thanks in advance.
    Rick Lister
    -=Stylus=-

    Hi,
    Please refer below link regarding web part custom properties,
    I think you need to write code under ApplyChanges() Method.I am not sure. Just try it once.
    http://sharepointkitchen.blogspot.in/2014/10/custom-web-part-properties-approach-2.html
    Don't forget to mark it as an Answer if it resolves your problem or Vote Me if it useful.
    Mahesh

  • My apps don't work/after update/4th/ did up dates yesterday, now none of my apps are working. When click on them my screen blicks

    When I did updates last night about videos. Now non of my apps are working. When I click on them the screen blicks on and off. Everything else see fine.

    - Have you tried to reset yur iPod?
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    -Next would be to restore the iPod from backup via iTunes
    - Last would be to restore you iPod to factory defaults/new iPod via iTunes since there may be corruption that is in your backup.

  • HT204150 Getting error message ("The set of folders cannot be opened") when clicking on "iCloud' folder in Outlook 2007. Lost contacts and calendar in outlook 2007 while installing icloud.

    Vista + Outlook 2007 + Icloud : Lost all contacts and calendar in outlook when installing/Synchronizing iCloud. Both still available on iphone and iCloud.
    How to get them back in Outlook? Understand iCloud erased them and transferred them in an other outlook account. In Outlook 2007, I can see a folder called "iCloud" but get an error message ("The set of folders cannot be opened...") when clicking on it. I suspect all is there, but no access possible. I assume some Outlook settings are uncorrect, but wonder which settings...?

    Well. Working just fine now, since uninstalling and re-installing icloud and syncing.

  • Spotlight menu hidden behind menu bar in Leopard when "Show Desktop" Expose

    The Spotlight menu is partially hidden behind the menu bar in Leopard when using "Show Desktop" (part of Expose). I tried using "Show Desktop" with keyboard shortcut keys and screen corners, and this behavior still exists. I tried toggling Spaces on and off, and the behavior still exists.
    This has been an issue since day one of using Leopard, and on every bootup. It's absolutely reproducible, and this is a bug, unless someone can prove me wrong? (Hopefully, I'm wrong.)

    Fixed in 10.5.2.

  • Applescript editor error - "can't get item 1 of false" when clicking cancel to close window.

    Hello
    I have made my first ever app which opens a webpage, its very basic but when I click the cancel button to close the page I get an error pop up saying can't get item 1 of false. I have looked it up and tried a few suggestions but the error just changes instead of exiting the window like it should
    The code looks like this, I am wondering if anyone has any suggestions on how to fix this ...
    --create the dialog list
    set item_list to {"Google"}
    set item_selected_array to (choose from list item_list with title "Google app" with prompt "To select the webpage, select it from the list and then click Ok" cancel button name "Cancel")
    set item_selected to item 1 of item_selected_array
    --google
    if item_selected = "google" then
              try
                        tell application "Safari" to launch
                        tell application "Safari" to activate
                        tell application "Safari" to open location "http://www.google.com"
              end try
    end if
    Thanks for looking and sorry if this is in the wrong section

    The choose from list command will return a list of items chosen (even if there is only one) or the boolean false if the cancel button is pressed, so you just need to check for the cancel result.  Since you are only selecting one item, one way would be to coerce the result to text (since you need to get the choice from the list anyay) and compare that - note that you don't need to target Safari for the open location command, since it is from Standard Additions.
    set item_list to {"Google"}
    set theChoice to (choose from list item_list with title "Google app" with prompt "To select the webpage, select it from the list and then click Ok" cancel button name "Cancel") as text
    if theChoice is "false" then error number -128 -- cancel
    if theChoice = "google" then --google
      open location "http://www.google.com"
    end if

  • When clicking "open in new tab" a link that is on the bookmarks toolbar, but hidden (meaning that they are visible when clicking on arrows on right side) nothing happens. Actually all right click features do not work on those "hidden" bookmarks.

    I have lots of bookmarks on the bookmarks toolbar, so they some are hidden on the right side, you have to click on those arrows in order to reveal those, and that's were I found out that right clicking on any of those bookmarks does not have any effect.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Finder crashes when clicking desktop icon in sidebar - any help?

    I ran TM for a couple of hours on my iBook and only searched for a couple of archived files and restored one just to see if it works. Since then, when I click on the desktop icon in the left finder navigation, it crashes and I need to force quit the finder.
    I have tried to delete the finder.plist file, but it did not help.
    My 2 questions:
    (a) can this crashing be caused by TM?
    (b) how can I fix it?
    Any help would be very much appreciated.
    Andreas

    Hi Petrock ,
    phantastic - that did the trick. Thanks a lot!!!
    Since you can easily read those cryptic logs, can you tell me why I cannot shut down the computer in some situations? Here is the log:
    Process: SystemUIServer [109]
    Path: /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    Identifier: com.apple.systemuiserver
    Version: 1.5.2 (245)
    Build Info: SystemUIServer-2450000~1
    Code Type: X86 (Native)
    Parent Process: launchd [82]
    Date/Time: 2008-01-27 13:27:17.226 +0100
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000008
    Crashed Thread: 17
    Thread 0:
    0 libSystem.B.dylib 0x93ab68e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x93abe0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x936f10fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x936f1d38 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x925868a4 RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x925866bd ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x92586531 BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x91c4cd5b _DPSNextEvent + 657
    8 com.apple.AppKit 0x91c4c6a0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.AppKit 0x91c456d1 -[NSApplication run] + 795
    10 com.apple.systemuiserver 0x00005f84 0x1000 + 20356
    11 com.apple.systemuiserver 0x00005a86 0x1000 + 19078
    Thread 1:
    0 libSystem.B.dylib 0x93abdace _semwaitsignal + 10
    1 libSystem.B.dylib 0x93ae7ced pthreadcondwait$UNIX2003 + 73
    2 ...e.ImageCaptureNotifications 0x000d3eaa _StaticProcessIOObjectsArray + 95
    3 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    4 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x93ae68e6 kevent + 10
    1 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    2 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x93ab68e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x93abe0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x936f10fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x936f1d38 CFRunLoopRunInMode + 88
    4 com.apple.systemuiserver 0x00026373 0x1000 + 152435
    5 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    6 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    8 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x93ab68e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x93abe0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x936f10fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x936f1d38 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x9642f464 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x9642f300 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    7 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x93abdace _semwaitsignal + 10
    1 libSystem.B.dylib 0x93ae7ced pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x966fe161 fefragmentthread + 54
    3 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    4 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x93ab6946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x93ae81cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x93ae9a53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x92ee8f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x92ee8db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x92ee8d15 -[NSConditionLock lockWhenCondition:] + 69
    6 ...syncservices.syncservicesui 0x0b1827e4 -[ISyncPlanWatcher(InternalMethods) _runQueue] + 701
    7 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    8 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    10 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x93b05f5a select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    2 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x93ab68e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x93abe0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x936f10fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x936f1d38 CFRunLoopRunInMode + 88
    4 com.apple.IMUtils 0x9342cdcb -[IMRemoteObjectBroadcaster _workerThread] + 246
    5 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    6 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    8 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x93b1f95a _workqops + 10
    1 libSystem.B.dylib 0x93b1f98a start_wqthread + 30
    Thread 10:
    Thread 11:
    0 libSystem.B.dylib 0x93ab68e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x93abe0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x936f10fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x936f1d38 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x92ed9e8d -[NSConnection sendInvocation:internal:] + 3005
    5 com.apple.Foundation 0x92ed8b76 -[NSDistantObject methodSignatureForSelector:] + 1302
    6 com.apple.CoreFoundation 0x937707dd __forwarding__ + 237
    7 com.apple.CoreFoundation 0x93770b32 CF_forwarding_prep0 + 50
    8 com.apple.menuextra.appleuser 0x0072331f 0x720000 + 13087
    9 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    10 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    11 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    12 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x93ab692e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x93abe405 pthreadmutexlock + 569
    2 com.apple.CFOpenDirectory 0x93a97ee7 ODRecordCopyDetails + 376
    3 com.apple.OpenDirectory 0x93a88b5c -[ODRecord recordDetailsForAttributes:error:] + 106
    4 com.apple.menuextra.appleuser 0x00724897 0x720000 + 18583
    5 com.apple.menuextra.appleuser 0x00723293 0x720000 + 12947
    6 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    7 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    9 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x93ab692e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x93abe405 pthreadmutexlock + 569
    2 com.apple.CFOpenDirectory 0x93a97ee7 ODRecordCopyDetails + 376
    3 com.apple.OpenDirectory 0x93a88b5c -[ODRecord recordDetailsForAttributes:error:] + 106
    4 com.apple.menuextra.appleuser 0x00724897 0x720000 + 18583
    5 com.apple.menuextra.appleuser 0x00723293 0x720000 + 12947
    6 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    7 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    9 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x93ab692e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x93abe405 pthreadmutexlock + 569
    2 com.apple.CFOpenDirectory 0x93a97ee7 ODRecordCopyDetails + 376
    3 com.apple.OpenDirectory 0x93a88b5c -[ODRecord recordDetailsForAttributes:error:] + 106
    4 com.apple.menuextra.appleuser 0x00724897 0x720000 + 18583
    5 com.apple.menuextra.appleuser 0x00723293 0x720000 + 12947
    6 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    7 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    9 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x93ab692e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x93abe405 pthreadmutexlock + 569
    2 com.apple.CFOpenDirectory 0x93a97ee7 ODRecordCopyDetails + 376
    3 com.apple.OpenDirectory 0x93a88b5c -[ODRecord recordDetailsForAttributes:error:] + 106
    4 com.apple.menuextra.appleuser 0x00724897 0x720000 + 18583
    5 com.apple.menuextra.appleuser 0x00723293 0x720000 + 12947
    6 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    7 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    9 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x93ab692e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x93abe405 pthreadmutexlock + 569
    2 com.apple.CFOpenDirectory 0x93a97ee7 ODRecordCopyDetails + 376
    3 com.apple.OpenDirectory 0x93a88b5c -[ODRecord recordDetailsForAttributes:error:] + 106
    4 com.apple.menuextra.appleuser 0x00724897 0x720000 + 18583
    5 com.apple.menuextra.appleuser 0x00723293 0x720000 + 12947
    6 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    7 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    9 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 17 Crashed:
    0 libSystem.B.dylib 0x93abe1de pthreadmutexlock + 18
    1 com.apple.CFOpenDirectory 0x93a99691 ODRecordVerifyPassword + 351
    2 com.apple.OpenDirectory 0x93a88eb3 -[ODRecord verifyPassword:error:] + 94
    3 com.apple.menuextra.appleuser 0x00724a21 0x720000 + 18977
    4 com.apple.menuextra.appleuser 0x0072327a 0x720000 + 12922
    5 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    6 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    8 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x93ab692e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x93abe405 pthreadmutexlock + 569
    2 com.apple.CFOpenDirectory 0x93a99683 ODRecordVerifyPassword + 337
    3 com.apple.OpenDirectory 0x93a88eb3 -[ODRecord verifyPassword:error:] + 94
    4 com.apple.menuextra.appleuser 0x00724a21 0x720000 + 18977
    5 com.apple.menuextra.appleuser 0x0072327a 0x720000 + 12922
    6 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    7 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    9 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x93ab692e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x93abe405 pthreadmutexlock + 569
    2 com.apple.CFOpenDirectory 0x93a99683 ODRecordVerifyPassword + 337
    3 com.apple.OpenDirectory 0x93a88eb3 -[ODRecord verifyPassword:error:] + 94
    4 com.apple.menuextra.appleuser 0x00724a21 0x720000 + 18977
    5 com.apple.menuextra.appleuser 0x0072327a 0x720000 + 12922
    6 com.apple.Foundation 0x92ea304d -[NSThread main] + 45
    7 com.apple.Foundation 0x92ea2bf4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93ae7075 pthreadstart + 321
    9 libSystem.B.dylib 0x93ae6f32 thread_start + 34
    Thread 17 crashed with X86 Thread State (32-bit):
    eax: 0x00000008 ebx: 0x93abe1dd ecx: 0x0059ed3c edx: 0xffffffff
    edi: 0x00000008 esi: 0x0ca0ba38 ebp: 0xb0a96ba8 esp: 0xb0a96b70
    ss: 0x0000001f efl: 0x00010282 eip: 0x93abe1de cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000008
    Binary Images:
    0x1000 - 0x52fef com.apple.systemuiserver 1.5.2 (245) <f795dd2f3418d618a75b8bc180503099> /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
    0x69000 - 0x6dfff com.apple.framework.SystemUIPlugin 1.5 (20) <39c3296a84437bbdc2e0f55078fe379d> /System/Library/PrivateFrameworks/SystemUIPlugin.framework/Versions/A/SystemUIP lugin
    0x77000 - 0xa2fff com.apple.framework.NetworkConfig 2.2 (2.2) <d2b7b51b7f0047e04133cb3c79e26f74> /System/Library/PrivateFrameworks/NetworkConfig.framework/Versions/A/NetworkCon fig
    0xcb000 - 0xd7ffb com.apple.ImageCaptureNotifications 4.0 (4.0) /System/Library/PrivateFrameworks/ICANotifications.framework/Versions/A/ICANoti fications
    0xf5000 - 0xf9fff com.apple.iPod 1.5 (15) <80c68d6d158ff1999c64d7450e34e0db> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x100000 - 0x103fff com.apple.BezelServicesFW 1.4.533 (1.4.533) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x10a000 - 0x1d3ff5 com.apple.DiscRecording 4.0 (4000.4.10) <d4130992c67baeb1ec39e6b63e080550> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x23e000 - 0x336fe0 com.apple.DiskImagesFramework 10.5.1 (192.1) <bc81cfae2611298268170f2e25ce07b3> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x39c000 - 0x3c4ff8 com.apple.framework.Apple80211 5.0.1 (501.1) <77dae9ed98cd5d7dc6925ec705f94bf0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x3d4000 - 0x3deffc com.apple.framework.AppleTalk 1.2.0 (???) <e0f5f336ad29ca635740ed8b83061234> /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x3e5000 - 0x41afff com.apple.MediaKit 9.0 (391) <baf0ef1d2fb7dec226bb982c991b6b95> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x42b000 - 0x456ffb libcurl.4.dylib ??? (???) <54ada27deb3b4ff7043d8836264eca0d> /usr/lib/libcurl.4.dylib
    0x4f3000 - 0x4f6fff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9ce6f675ce724b0ba4e78323b79cf95c> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x720000 - 0x730fff com.apple.menuextra.appleuser 3.0 (3.0) <ca11387e6d8b6469102e37722b156b60> /System/Library/CoreServices/Menu Extras/User.menu/Contents/MacOS/User
    0x781000 - 0x78cfff com.apple.menuextra.textinput 1.1.0 (1.1.0) <6ae1b0b5bb8390d44e923dd2c56fad08> /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/MacOS/TextInput
    0x797000 - 0x79cfff com.apple.audio.AppleHDAHALPlugIn 1.4.0 (1.4.0a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x7a1000 - 0x7a2fff com.apple.syncservices.sync_menu 4.0 (388) <1dcfbb4614b8c7a844df4b2aef479899> /System/Library/CoreServices/Menu Extras/Sync.menu/Contents/MacOS/Sync
    0x7c1000 - 0x7d3ffa com.apple.menuextra.airport 5.0.1 (501.1) <ddbd669439f1d97d4f3f603836375c5c> /System/Library/CoreServices/Menu Extras/AirPort.menu/Contents/MacOS/AirPort
    0x7e7000 - 0x7f0fff com.apple.menuextra.iChat 4.0 (601) <0a632dd05b25d7d3dba866f33d1fc4fa> /System/Library/CoreServices/Menu Extras/iChat.menu/Contents/MacOS/iChat
    0xb056000 - 0xb05bff3 libCGXCoreImage.A.dylib ??? (???) <978986709159e5fe9e094df5efddac1d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xb075000 - 0xb15bff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xb16a000 - 0xb173fff com.apple.syncservices.SyncMenuExtraBundle 4.0 (388) <d1db268c8e9b921f6a691132adbf8fbc> /System/Library/CoreServices/Menu Extras/Sync.menu/Contents/Resources/SyncMenuExtraBundle.bundle/Contents/MacOS/S yncMenuExtraBundle
    0xb17c000 - 0xb18ffff com.apple.syncservices.syncservicesui 4.0 (388) <6bf1ae04e217b3b699223e2d55b30a71> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0xb1a8000 - 0xb1abfff com.apple.iCal.DockExtra 3.0.1 (1205) <6368c4993e0886241da779ce442d82dd> /Applications/iCal.app/Contents/Resources/iCalDockExtra.bundle/Contents/MacOS/i CalDockExtra
    0xc728000 - 0xc73affb com.apple.airport.clientbundle 5.0.1 (501.1) <af3be03b174586245ecf7d2bb8dc049a> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/Cli entController.bundle/Contents/MacOS/ClientController
    0xc747000 - 0xc75dfe0 com.apple.EAP8021X 9.0.0 (???) <ad96db7b958d90ba3078f4a8f2beb341> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
    0xc768000 - 0xc788ff7 com.apple.internetconnect.framework 1.5 (1.5) <b0f222a3a8161cde2e47b8a0602cc8c1> /System/Library/PrivateFrameworks/InternetConnect.framework/Versions/A/Internet Connect
    0xcdcc000 - 0xcfbefea +com.elgato.mpegsupport EyeTV MPEG Support 1.0.7 (build 43) (1.0.7) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x70000000 - 0x700e3ff2 com.apple.audio.units.Components 1.5 (1.5) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x90003000 - 0x900b2fff com.apple.DesktopServices 1.4.3 (1.4.3) <66d5ed56111c43d234e235d365d02469> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x900b3000 - 0x90169fe3 com.apple.CoreServices.OSServices 210.2 (210.2) <4ed69f07fc0f211ab32d1ee96e281fc2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9019a000 - 0x9019afff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9019b000 - 0x901cdfff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x901ce000 - 0x90255ff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x90256000 - 0x90271ffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90273000 - 0x902adff7 com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x902ae000 - 0x90945fef com.apple.CoreGraphics 1.351.0 (???) <7a6f399039eed6dbe845c169f7d21a70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90946000 - 0x90996ff7 com.apple.HIServices 1.6.0 (???) <d74aa73e4cfd30a08fb169198a8d2539> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90997000 - 0x90a16ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90a17000 - 0x90a17ffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90a18000 - 0x90a59fe7 libRIP.A.dylib ??? (???) <bdc6d70bf4ed3dace321b4ff76a353b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90a5a000 - 0x90a66fff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x90a67000 - 0x90afafff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90afb000 - 0x90b1affa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91033000 - 0x91035ff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91036000 - 0x91075fef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91076000 - 0x91542ffe libGLProgrammability.dylib ??? (???) <e8bc0af671427cf2b6279a035805a086> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91543000 - 0x9160aff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91671000 - 0x91681ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91682000 - 0x9184bfef com.apple.security 5.0.1 (32736) <8c9eda0fcc1d8a571543025ac900715f> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9184c000 - 0x918f3fff com.apple.QD 3.11.50 (???) <e2f71720ae1dad06a8883ac80775b21a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x918f4000 - 0x918fbff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x918fc000 - 0x91929feb libvDSP.dylib ??? (???) <a26683d121ee0f96df9a9d0bfca36049> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9192e000 - 0x91a66ff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x91a67000 - 0x91af3ffb com.apple.QTKit 7.4 (92) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91af4000 - 0x91b38feb com.apple.DirectoryService.PasswordServerFramework 3.0.1 (3.0.1) <e2858f33c02cef9ea4d717b19529059e> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91b39000 - 0x91b3bfff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91b3c000 - 0x91c07fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91c08000 - 0x91c08ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91c0c000 - 0x92406fef com.apple.AppKit 6.5 (949) <f8d0f6d0bb5ac092f48f42ca684bdb54> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92426000 - 0x9242bfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9245e000 - 0x9247afff com.apple.IMFramework 4.0 (578) <b8e7d1e85ec753dc0116843125927ae8> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9247b000 - 0x92499ff3 com.apple.DirectoryService.Framework 3.5 (3.5) <899d8c9ee31b004a6ff73dab88982b1a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9249a000 - 0x9254afff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92557000 - 0x9285dfff com.apple.HIToolbox 1.5.0 (???) <1b872a7151ee3f80c9c736a3e46d00d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9285e000 - 0x929dcfff com.apple.AddressBook.framework 4.1 (687) <3f005092d08e963eabe8f7f66c09cc1e> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x929dd000 - 0x92b01fe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92b02000 - 0x92b1afff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92b1b000 - 0x92bfcff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x92bfd000 - 0x92c74fe3 com.apple.CFNetwork 220 (221) <972a41911805859205b057a6f5b91e8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92c75000 - 0x92c7ffeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92c80000 - 0x92caafef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x92cb1000 - 0x92ce0fe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92ce1000 - 0x92d6bfff com.apple.framework.IOKit 1.5.1 (???) <5176a7383151a19c962334009fef2c6d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92db9000 - 0x92e98fff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x92e99000 - 0x93112fe7 com.apple.Foundation 6.5.1 (677.1) <85ac18c7cd454378db6122bea0c00965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93113000 - 0x933ecfe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x933ed000 - 0x9342aff7 libGLImage.dylib ??? (???) <202d73e6a4688fc06ff11b71910c2ce7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9342b000 - 0x9343efff com.apple.IMUtils 4.0 (578) <cf6de2e36b4922509a027dcf59951de8> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x9343f000 - 0x9344cfe7 com.apple.opengl 1.5.5 (1.5.5) <aa08b52d2a84b44dc6ee5d544a53fe8a> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9344d000 - 0x934f6fff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x934f7000 - 0x93589ff3 com.apple.ApplicationServices.ATS 3.0 (???) <fb5f572243dbc370a0ea5efc8e81ae11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9367f000 - 0x937b1fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93a1b000 - 0x93a60fef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93a61000 - 0x93a85feb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x93a86000 - 0x93a8afff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x93a8b000 - 0x93a8cffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x93a8d000 - 0x93a9effe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x93a9f000 - 0x93ab5fe7 com.apple.CoreVideo 1.5.0 (1.5.0) <7e010557527a0e6d49147c297d16850a> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93ab6000 - 0x93c10fe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x93d80000 - 0x93f3bff3 com.apple.QuartzComposer 2.0 (106) <e31bf3733d0676dd7993afca6ce48c3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93f3c000 - 0x9401bfff com.apple.syncservices 3.0 (388) <fc1294b5b89dcab17de9e04c282a3cad> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x94053000 - 0x94367fe2 com.apple.QuickTime 7.4.0 (92) <0d674546d12c65dc5c33dca4c81c315b> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x943d7000 - 0x943d8fef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x943d9000 - 0x94429feb com.apple.framework.familycontrols 1.0.1 (1.0.1) <da064f9f4b4ac1edd1bd3818f637c11f> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9442a000 - 0x94435ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x94436000 - 0x94473fff com.apple.CoreMediaIOServicesPrivate 1.4 (1.4) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x944b2000 - 0x944ebffe com.apple.securityfoundation 3.0 (32768) <1e9885d63ced51f81bc1f39af624637d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x944ec000 - 0x9452efef com.apple.NavigationServices 3.5.1 (161) <cc6bd78eabf1e2e7166914e9f12f5850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9453d000 - 0x94549ff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9454a000 - 0x9454ffff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94550000 - 0x9490efea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95859000 - 0x95860fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x95861000 - 0x95897fff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x959cf000 - 0x959f3fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x959f4000 - 0x95a6eff8 com.apple.print.framework.PrintCore 5.5 (245) <9441d178f4b430cf92b67bf346646693> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95a6f000 - 0x95ac9ff7 com.apple.CoreText 2.0.0 (???) <7fa39cd5bc847615ec02e7c7a37c0508> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95aca000 - 0x95adeff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95ae5000 - 0x95af3ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x95c2c000 - 0x95c53fff libcups.2.dylib ??? (???) <5521498e8902ddd0b15cfaa7db384e29> /usr/lib/libcups.2.dylib
    0x95c54000 - 0x96064fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96065000 - 0x96065ffd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96066000 - 0x96066ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96067000 - 0x96072fe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96073000 - 0x96125ffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x9629f000 - 0x962fbff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x963b8000 - 0x96411fff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x96412000 - 0x9648efeb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9648f000 - 0x964d9fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x964da000 - 0x965beffb com.apple.CoreData 100 (185) <a4e63784275e25e62f57e75e0af0b94d> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x965bf000 - 0x965cefff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x96600000 - 0x96600ffd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96601000 - 0x96608ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x96609000 - 0x9699fff7 com.apple.QuartzCore 1.5.1 (1.5.1) <deb61cbeb3f734a1b2f4669f6268b9de> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x969a0000 - 0x969b0fff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x969b1000 - 0x969b1ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96a00000 - 0x96a04fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96a05000 - 0x96a05ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x96a06000 - 0x96a06ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x96a07000 - 0x96b4cff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <154d4d8cda2bd99518cbabc9f2d69833> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96b4d000 - 0x96b56fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96b5f000 - 0x96b87ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x96b88000 - 0x96bfcfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96bfd000 - 0x96c5affb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x96d2f000 - 0x96d59fff com.apple.CoreMediaPrivate 1.4 (1.4) <59630ee9096ecf2ca1e518da2f46c68d> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x96d5a000 - 0x96d62fff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x96d63000 - 0x96d81fff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x96db7000 - 0x96dcdfff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x96e6d000 - 0x96e7cffe com.apple.DSObjCWrappers.Framework 1.2 (1.2) <f5b58d1d3a855a63d493ccbec417a1e9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x96e7d000 - 0x96e83fff com.apple.print.framework.Print 218 (220) <c35172175abbe554ddadd9b6401351fa> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96e84000 - 0x96e87fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96e88000 - 0x96f14ff7 com.apple.LaunchServices 286 (286) <72b15e7a01e42d510f0339e90113d5d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    or here is /Library/Logs:
    Process: DirectoryService [11]
    Path: /usr/sbin/DirectoryService
    Identifier: DirectoryService
    Version: ??? (???)
    Code Type: X86 (Native)
    Parent Process: launchd [1]
    Date/Time: 2007-12-18 16:47:09.904 +0100
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000001214196a
    Crashed Thread: 2
    Thread 0:
    0 libSystem.B.dylib 0x901d48e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x901dc0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x907720fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90772d94 CFRunLoopRun + 84
    4 DirectoryService 0x00016a8f main + 2583
    5 DirectoryService 0x0001605a start + 54
    Thread 1:
    0 libSystem.B.dylib 0x901d48e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x901dc0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x907720fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90772d94 CFRunLoopRun + 84
    4 DirectoryService 0x00022b42 CPluginRunLoopThread::ThreadMain() + 222
    5 ...ectoryServiceCore.Framework 0x0015f349 DSCThread::Run() + 39
    6 ...ectoryServiceCore.Framework 0x0015f554 DSLThread::_RunWrapper(void*) + 84
    7 libSystem.B.dylib 0x90205075 pthreadstart + 321
    8 libSystem.B.dylib 0x90204f32 thread_start + 34
    Thread 2 Crashed:
    0 libsqlite3.0.dylib 0x94ea71e8 sqlite3_open16 + 22184
    1 libsqlite3.0.dylib 0x94e437be sqlite3blobbytes + 46
    2 libsqlite3.0.dylib 0x94e4380d sqlite3blobbytes + 125
    3 libsqlite3.0.dylib 0x94e4380d sqlite3blobbytes + 125
    4 libsqlite3.0.dylib 0x94ea6edd sqlite3_open16 + 21405
    5 libsqlite3.0.dylib 0x94e85edf sqlite3columntext16 + 8383
    6 libsqlite3.0.dylib 0x94e9992e sqlite3columntext16 + 88846
    7 libsqlite3.0.dylib 0x94e9e67c sqlite3columntext16 + 108636
    8 libsqlite3.0.dylib 0x94e9e982 sqlite3columntext16 + 109410
    9 libsqlite3.0.dylib 0x94ea09d8 sqlite3declarevtab + 6744
    10 DirectoryService 0x000727a1 CDSLocalPluginNode::GetFileAccessIndex(__CFString const*, tDirPatternMatch, __CFString const*, __CFString const*, bool*) + 665
    11 DirectoryService 0x0007588f CDSLocalPluginNode::GetRecords(__CFString const*, __CFArray const*, __CFString const*, tDirPatternMatch, bool, unsigned long, __CFArray*, bool, __CFString const**) + 1387
    12 DirectoryService 0x0006d22f CDSLocalPlugin::GetRecordList(sGetRecordList*) + 995
    13 DirectoryService 0x000ac800 BaseDirectoryPlugin::ProcessRequest(void*) + 396
    14 DirectoryService 0x0006d812 CDSLocalPlugin::ProcessRequest(void*) + 444
    15 DirectoryService 0x00002639 CRequestHandler::HandlePluginCall(sComData**) + 775
    16 DirectoryService 0x000033f4 CRequestHandler::HandleRequest(sComData**) + 82
    17 DirectoryService 0x0000b03d CMessaging::SendInlineMessage(unsigned long) + 211
    18 DirectoryService 0x0000a2da dsGetRecordList + 1090
    19 DirectoryService 0x0000d72b CSearchPlugin::GetRecordList(sGetRecordList*) + 975
    20 DirectoryService 0x00011af8 CSearchPlugin::HandleRequest(void*) + 152
    21 DirectoryService 0x0000df2a CSearchPlugin::ProcessRequest(void*) + 372
    22 DirectoryService 0x00002639 CRequestHandler::HandlePluginCall(sComData**) + 775
    23 DirectoryService 0x000033f4 CRequestHandler::HandleRequest(sComData**) + 82
    24 DirectoryService 0x0000b03d CMessaging::SendInlineMessage(unsigned long) + 211
    25 DirectoryService 0x0000a2da dsGetRecordList + 1090
    26 DirectoryService 0x00085ff3 CCachePlugin::GetRecordListLibInfo(unsigned long, char const*, char const*, unsigned long, tDataList*, sCacheValidation* (*)(unsigned long, unsigned long, kvbuf_t*, tDataBuffer*, tRecordEntry*, unsigned long, void*, CCache*, char**), kvbuf_t*, void*, CCache*, char**, sCacheValidation**) + 209
    27 DirectoryService 0x0008ed36 CCachePlugin::DSgetpwnam(kvbuf_t*, int) + 678
    28 DirectoryService 0x00093199 CCachePlugin::ProcessLookupRequest(int, char*, int, int) + 85
    29 DirectoryService 0x0002eb0d libinfoDSmigdoQuery + 585
    30 DirectoryService 0x00098a0c _XQuery + 343
    31 DirectoryService 0x00098769 DSlibinfoMIG_server + 109
    32 libSystem.B.dylib 0x902497af machmsgserver + 343
    33 DirectoryService 0x00022d7b CMigHandlerThread::ThreadMain() + 303
    34 ...ectoryServiceCore.Framework 0x0015f349 DSCThread::Run() + 39
    35 ...ectoryServiceCore.Framework 0x0015f554 DSLThread::_RunWrapper(void*) + 84
    36 libSystem.B.dylib 0x90205075 pthreadstart + 321
    37 libSystem.B.dylib 0x90204f32 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x902048e6 kevent + 10
    1 libSystem.B.dylib 0x90205075 pthreadstart + 321
    2 libSystem.B.dylib 0x90204f32 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x90216b45 syscall + 5
    1 ...ectoryServiceCore.Framework 0x0015f349 DSCThread::Run() + 39
    2 ...ectoryServiceCore.Framework 0x0015f554 DSLThread::_RunWrapper(void*) + 84
    3 libSystem.B.dylib 0x90205075 pthreadstart + 321
    4 libSystem.B.dylib 0x90204f32 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x901d48e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x901dc0dc mach_msg + 72
    2 libSystem.B.dylib 0x90231731 machmsg_serveronce + 318
    3 DirectoryService 0x00022cee CMigHandlerThread::ThreadMain() + 162
    4 ...ectoryServiceCore.Framework 0x0015f349 DSCThread::Run() + 39
    5 ...ectoryServiceCore.Framework 0x0015f554 DSLThread::_RunWrapper(void*) + 84
    6 libSystem.B.dylib 0x90205075 pthreadstart + 321
    7 libSystem.B.dylib 0x90204f32 thread_start + 34
    Thread 2 crashed with X86 Thread State (32-bit):
    eax: 0xb0101b5c ebx: 0x94ea71d4 ecx: 0xb010155c edx: 0x94ea71c0
    edi: 0xb010155c esi: 0x12141968 ebp: 0xb0101478 esp: 0xb0101410
    ss: 0x0000001f efl: 0x00010202 eip: 0x94ea71e8 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x1214196a
    Binary Images:
    0x1000 - 0x109fe7 +DirectoryService ??? (???) <2aa6a70696bda8eb650934b84d2db600> /usr/sbin/DirectoryService
    0x158000 - 0x165fe3 com.apple.DirectoryServiceCore.Framework 3.5 (3.5) <8461435d3a5574c799d82d1d718c945d> /System/Library/PrivateFrameworks/DirectoryServiceCore.framework/Versions/A/Dir ectoryServiceCore
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x90124000 - 0x90142fff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x901d4000 - 0x9032efe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x90425000 - 0x9044ffef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x904fb000 - 0x905adffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x905ae000 - 0x906e6ff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x906f8000 - 0x906fffe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x90700000 - 0x90832fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91106000 - 0x91138fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x919e4000 - 0x91a94fff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91fee000 - 0x92024fff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9207f000 - 0x920c4fef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x931d9000 - 0x93263fff com.apple.framework.IOKit 1.5.1 (???) <5176a7383151a19c962334009fef2c6d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93271000 - 0x932f0ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x933d1000 - 0x933e7fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9349c000 - 0x93715fe7 com.apple.Foundation 6.5.1 (677.1) <85ac18c7cd454378db6122bea0c00965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93cbb000 - 0x93cc2ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x94099000 - 0x94372fe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x943f3000 - 0x9447fff7 com.apple.LaunchServices 284 (284) <0fb50a7a6fd38875f727fc2592a496e4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94abd000 - 0x94abefef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x94dce000 - 0x94df2fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x94e41000 - 0x94ec8ff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x95049000 - 0x9512aff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x95416000 - 0x95445fe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9578b000 - 0x9578bffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95798000 - 0x957bcfeb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x957bd000 - 0x9581affb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x9581b000 - 0x9585ffeb com.apple.DirectoryService.PasswordServerFramework 3.0.1 (3.0.1) <e2858f33c02cef9ea4d717b19529059e> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x95b27000 - 0x95b2ffff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9600a000 - 0x96018ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x96050000 - 0x96219fef com.apple.security 5.0.1 (32736) <8c9eda0fcc1d8a571543025ac900715f> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9621a000 - 0x96291fe3 com.apple.CFNetwork 220 (220) <0ae8fbcbadcb9bd8d673aa4531c0fcfc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96a39000 - 0x96b18fff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x96b5f000 - 0x96c15fe3 com.apple.CoreServices.OSServices 210.2 (210.2) <4ed69f07fc0f211ab32d1ee96e281fc2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96d5e000 - 0x96d6dfff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    any idea?
    Thanks a lot,
    Andreas

  • Terminal opens when clicking desktop from finder window

    I don't know when started to happen, but when I open a window of Finder, and click in the left sidebar to see what is in Desktop, it didn't show in the right panel, it open a Terminal window.
    If I click Applications, or Music, it works good, but not with Desktop.
    Any ideas? I alredy installed Lion again 3 times, but when restoring from Time Machine, it starts to doing that.
    Thank's!

    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Terminal in the page that opens.
    Drag or copy – do not type – the following line into the Terminal window, then press return:
    ls -@Odel ~/Desktop
    Post any lines of output that appear below what you entered – the text, please, not a screenshot. If your user name appears in the output, anonymize it for privacy's sake.

  • Login item - in a specific Space/Desktop

    I would like to have all the applications which are started up when I log on (System Preferences > Accounts > Login Items) started in a specific Space (desktop). Is this possible?

    Yep.
    In Login Items you have the option to show/hide login items, make sure all the ones you want to show are set appropriately there.
    Then in System Preferences go into Expose & Spaces, then the Spaces tab. You can set Application Assignments so apps start up in certain spaces or in every space.

  • Finder crashes when clicking on Applications folder

    VERY weird. Beginning a few days ago the finder on my Mac Pro crashes whenever I clicked on the Applications folder. It makes no difference what finder view I am using (icons, columns, etc.). Even if I click on the alias to the Applications folder in the sidebar, the finder crashes. I cannot view the contents of that folder by any method. The only way I can get to an item contained therein is to search for it using Spotlight.
    Thinking that maybe my startup disk was hosed somehow, I ran Disk Utility (repaired permissions and verified the disk) and ran all tests within TechTool Deluxe. Both said the disk and filesystem were fine.
    I tried copying the entire folder to another disk, but the copy aborts after the first few items (stops with Adobe Photoshop; the next item alphabetically is Aperture). In case Aperture was somehow a problem, I removed it (searched using Spotlight and then dragged it to the trash). No change in behavior.
    I used Carbon Copy Cloner to replicate the entire drive to another, newly reformatted drive and made that drive the startup disk. No change in behavior.
    It sure seems that the issue has to do with some kind of file corruption (that CCC dutifully replicated) rather than a faulty drive, but I have no idea where to look next for a solution (other than reformatting and reinstalling over 100 applications from scratch; ugh).
    Does anyone have any idea what may be going on here? Until I can fix this, the Mac Pro is pretty much useless (luckily, I also have a MacBook Pro).

    Hi - I too am having this issue. 
    When I click on any of the items in my sidebar (i.e. -desktop, documents, applications, etc...) this causes the finder to crash and restart. 
    I have tried trashing the com.apple.finder.plist and running disk utility but to no avail.  I also found this other forum discussion (https://discussions.apple.com/thread/1336291?start=0&tstart=0) Where this was part of the post
      petrock
    Re: finder crashes when clicking desktop icon in sidebar - any help? 
    Feb 2, 2008 3:43 PM (in response to choegl)
    choegl, that crash is the same place as andreas's but it got there in a different manor. In the manor I would expect it to. It is trying to retarget the window to your selection in the sidebar and setup List View according to the view options for that folder from that folder's .DS_Store. Its specifically trying to get the label for one of the columns in List View (i.e. Size or Name or Date Modified) but the value it gets from the .DS_Store is corrupt/bogus and causes the Finder to crash (specifically a component underneath the Finder call CoreFoundation via a call to CFStringGetLength). Here's how you solve your problem. In /Applications/Utilities/Terminal.app type: +cd <path to problem folder>+
    +rm .DS_Store+
    +killall Finder+ Pressing return after each line. You can get the path to the problem folder by drag/dropping the folder into the Terminal window. When the Finder comes back up, see if it still crashes when you click on that problem folder (i.e. your Desktop) in the sidebar. Repeat the steps above for any other folders that behave this way when you click on them in the sidebar. Hope that helps everyone... 
    btw, I wrote up a bug report on your behalf about this issue and sent it off to Apple (# 5721669)."
    I tried this as well and nothing! 
    Anyone have any suggestions?  I'm at a loss and am hating this issue!  BTW, if I right click on any of the items in the sidebar, I can then click on open to get the folder to open.  HASSLE!  and if I forget (which is likely since I move too fast for my own good) then I crash the finder.  Also, this happens on all the users on my mac. 
    Thanks!!!!
    Matthew
    MacBookPro 2,2 - OS X 10.6.8 - 2.16 GHz - 3 GB mem -

  • Cannot delete login item "You cannot change this item because it's managed by your system administrator"

    We migrated a server (ldap and file serving) to some new machines, which have new names.  We've got all of the login and file sharing functionality working on the new machines, but wherever we have a mount of a share in the Login Items for a user, we can't get the old machine out of the Login Items.  It's not fatal, but it does make login take a lot longer because it has to fail first.
    We can mount the share from the new server, and save THAT in a NEW Login Item just fine -- it's just that when you click on the old defunct one the minus sign is greyed out, and the mouseover says "You cannot change this item because it's managed by your system administrator."  There is a yellow triangle next to the item in the list.  Went into the user's ~/Library/Preferences/com.apple.loginitems.plist and it's not in the file.  The /Library/Preferences don't have anything that looks like a plist of the right name.
    Where do I find it and how do I get rid of it?

    In response to ManishBhatt94's post today, I may have some information that may be useful to you. I called Microsoft's 800-642-7676 and spoke with a technical representative with questions pertaining to my particular issue. I also have friend that has the
    same issue with her computer running windows 8. A representative from my ISP told me how to go into 1)Tools, 2)Internet Options, 3)Connections, 4)LAN settings and uncheck the proxy settings box. However after restarting or shutting down my computer it reappears.
    It will also reappears while I play games on Facebook not allowing me continue until I go back into the proxy settings in LAN and uncheck the box AGAIN and AGAIN. A local owner of a computer repair shop told my friend that it was a virus. After speaking with
    Microsoft today I was told the same thing/it was more than likely a virus on my personal PC at home. As most people likely do,  I use wireless internet in my home on the affected computer. Solution; as suggested by Microsoft rep was to have the virus
    professionally removed either by someone or to use their remote service for a fee of $149 which comes with several guarantees and does not require you to re-install software or documents. I hope that my response was of some help to you. I also kept trying
    to fix this problem but wasted a lot of time. He also suggested to Google the proxy problem to see if ANYONE has any alternatives to fixing this problem!
     

  • ORA-22905: cannot access rows from a non-nested table item in Table func

    I am using a table function in Oracle 8.1.7.4.0. I did declare an object type and a collection type like this:
    CREATE TYPE t_obj AS OBJECT ...
    CREATE TYPE t_tab AS TABLE OF t_obj;
    My table function returns t_tab and is called like this:
    SELECT ... FROM TABLE (CAST (my_pkg.table_fnc AS t_tab)) ...
    This works pretty well as long as I run it in the same schema that owns the function and the 2 types. As soon as I run this query from another schema, I get an ORA-22905: cannot access rows from a non-nested table item error, even though I granted execute on both the types and the function to the other user and I created public synonyms for all 3 objects.
    As soon as I specify the schema name of t_tab in the cast, the query runs fine:
    SELECT ... FROM TABLE (CAST (my_pkg.table_fnc AS owner.t_tab)) ...
    I don't like to have a schema hard coded in a query, therefore I'd like to do this without the schema. Any ideas of how to get around this error?

    Richard,
    your 3 statements are correct. I'll go ahead and log a TAR.
    Both DESCs return the same output when run as the other user. And, running the table function directly in SQL*Plus (SELECT my_pkg.table_fnc FROM dual;) also returns a result and no errors. The problem has to be in the CAST function.
    Thanks for your help.

Maybe you are looking for