Powershell IE autostart and maximization crashes

Hello,
For starters i would like to say that i am really new in powershell and scripting itself, but i hope i have legit problem that someone could help me to solve.
I`m trying to create powershell script that starts Internet Explorer and maximizes than periodically checks if IE is till running starts it if it`s not, and if it is started then maximizes it if if its not. (everything that is seen in this script i have
scrapped from your forum and kind of tried to put it together. 
Here is the script: 
for (;;) {
$processToCheck = "iexplore"
$process = Get-Process $processToCheck -ErrorAction SilentlyContinue
If (!($process)) {
$ie = New-Object -ComObject InternetExplorer.Application
$ie.Visible = $true
$ie.Navigate("www.google.com")
$sw = @'
[DllImport("user32.dll")]
public static extern int ShowWindow(int hwnd, int nCmdShow);
$type = Add-Type -Name ShowWindow2 -MemberDefinition $sw -Language CSharpVersion3 -Namespace Utils -PassThru
$type::ShowWindow($ie.hwnd, 3) # 3 = maximize
start-sleep -s 5
else
{$sig = '[DllImport("user32.dll")]
public static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);'
Add-Type -MemberDefinition $sig -name NativeMethods -namespace Win32
$hwnd = @(Get-Process iexplore)[0].MainWindowHandle
# Maximize window
[Win32.NativeMethods]::ShowWindowAsync($hwnd, 3)
start-sleep -s 5
Now about my issue. This script seems to do the trick but not every time. Sometimes if i just start it it starts IE normally and in 5 secs maximizes it and after that i can minimize or just change screen size and it will properly maximize. Issues start if
i close IE and it has to reopen. From time to time IE hangs. Everything lese in background works and i can stop my PS script from executing but IE stays Hanged till i kill it through Task manager Alt+F4 or any other way.
I tried to run the first part with plane start-process iexplore -wait and it does not hang. 
As much as i understand (i might be terribly wrong though) IE is not fully started before rest of the code is executed and that leads to IE hang but -wait command does not help since it waits till IE is closed.
I hope i have made my point clear.
UPD1: Sometimes it hangs from the beggining
Best regards
BoRdo

I did something like this a while back using a WMI event sink in a VBScript script...
' If IE isn't running, start it maximized.
' Restart IE automatically if it closes.
' Global constants
Const ERROR_FILE_NOT_FOUND = 2
Const SW_SHOWMAXIMIZED = 3
' Global objects
Dim FSO, WshShell, SWbemServices, EventSink
Set FSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = CreateObject("WScript.Shell")
Set SWbemServices = GetObject("winmgmts:{impersonationlevel=impersonate}" _
& "!root/CIMV2")
Set EventSink = WScript.CreateObject("WbemScripting.SWbemSink", "EVENTSINK_")
' Global variables
Dim IEProcessID
' Returns full path and filename of Internet Explorer (32-bit on x64).
Function GetIEPath()
Dim WshEnvironment, ProgramFiles, IEPath
Set WshEnvironment = WshShell.Environment("PROCESS")
If WshEnvironment.Item("ProgramFiles(x86)") = "" Then
ProgramFiles = WshEnvironment.Item("ProgramFiles")
Else
ProgramFiles = WshEnvironment.Item("ProgramFiles(x86)")
End If
IEPath = FSO.BuildPath(ProgramFiles, "\Internet Explorer\iexplore.exe")
If Not FSO.FileExists(IEPath) Then
WScript.Echo "Internet Explorer not found"
WScript.Quit ERROR_FILE_NOT_FOUND
End If
GetIEPath = IEPath
End Function
' Returns process ID of iexplore.exe, or -1 if not found.
Function GetIEProcessID()
Dim Result, Collection, Item
Result = -1
Set Collection = SWbemServices.ExecQuery("select ProcessId from " _
& "Win32_Process where Name='iexplore.exe'")
For Each Item In Collection
Result = Item.ProcessId
Exit For
Next
GetIEProcessID = Result
End Function
' Starts IE maximized and returns its process ID.
Function StartIE()
Dim ProcStartup, Process, Result, ProcessID
Set ProcStartup = SWbemServices.Get("Win32_ProcessStartup").SpawnInstance_()
ProcStartup.ShowWindow = SW_SHOWMAXIMIZED
Set Process = SWbemServices.Get("Win32_Process")
Result = Process.Create(GetIEPath, Null, ProcStartup, ProcessID)
If Result <> 0 Then
WScript.Echo "Unable to start Internet Explorer; WMI error " & CStr(Result)
WScript.Quit Result
End If
StartIE = ProcessID
End Function
' WMI asyncronous event sink: If IE closes, start it again.
Sub EVENTSINK_OnObjectReady(ByVal ObjectEvent, ByVal Context)
If ObjectEvent.TargetInstance.ProcessId = IEProcessID Then
IEProcessID = StartIE()
End If
End Sub
' Execute query to receive events asyncronously.
SWbemServices.ExecNotificationQueryAsync _
EventSink, "select * from __InstanceDeletionEvent within 1 where " _
& "TargetInstance isa 'Win32_Process'"
' If IE isn't running, start it and get its process ID.
IEProcessID = GetIEProcessID()
If IEProcessID = -1 Then
IEProcessID = StartIE()
End If
' Loop forever. The event sink will restart IE if it closes.
Do While True
WScript.Sleep 100
Loop
-- Bill Stewart [Bill_Stewart]

Similar Messages

  • Powershell 4 ISE and mapped drives

    I'm not sure if this is the correct forum, but I have a Windows 8.1 workstation, not domain joined, and I can't see my mapped drives in powershell ISE.  I'm trying to open a script for editing that resides on a server, I have the drive mapped in Windows
    explorer, but when I try to access that drive in the ISE it is not there, If I type it in I get the message that Windows cannot find the location. Even from the powershell console I can't CD to the drive.. Has anyone seen this? 
    Thanks

    Hi,
    As what you mentioned that you can get the Network drive mapped by UNC name, but the credential is required. Would you please let me know what name you use in script to map drive bring you the issue?
    Here I just would like to share you that you can save the credential locally on your computer by Credential Manager。
    Please type "Credential Manager" in the Windows Search and add a generic credential:
    Address: \\NetworkAttachedName
    Login: \LoginName
    Pass: ******
    For the PowerShell ISE stopped working issue, please upload the event log and app crash dump file for powershell_ise.exe for further research.
    First enable app crash dump collection by copying following words into notepad, saving it as dump.reg and importing it:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\localdumps\powershell_ise.exe]
    "DumpFolder"=hex(2):63,00,3a,00,5c,00,63,00,72,00,61,00,73,00,68,00,64,00,75,\
      00,6d,00,70,00,73,00,00,00
    "DumpCount"=dword:00000010
    "DumpType"=dword:00000001
    "CustomDumpFlags"=dword:00000000
    Then, please repro the issue. If No response error appears, please find the crashdump file under c:\.
    Look forward to your response.
    Kate Li
    TechNet Community Support

  • After iOS 8 update no mobile signal and keeps crashing

    My iPad 4 is about a year old and I recently updated it to ISO8  big mistake as it now has no mobile signal reception and keeps crashing.  restored to factory setting using iTunes and now won't activate, iTunes account won't accept it and the iPad keeps crashing every 2 to 3 mins
    help!!

    Hi Go to settings Email Accounts Delete Email Account then Re add acount back again If you have more than one Email Account do this with each one. Cheers Brian

  • Satellite P200D-11R sound and graphics crash after waking up from sleep mode

    Hi,
    I am wondering if anyone here has had similar experiences to mine (below) or can offer any solutions.
    I have upgraded my P200D-11R OS to Vista 64 Ultimate to take advantage of the extra performance. I also add that the BIOS has already been updated to version 1.4.
    Well, everything works fine with the standard 2Gig of RAM which the laptop was supplied with originally, however, when I upgrade the RAM to 4Gig (2 x 2GB Samsung 667mHz modules), sound and graphics problems appear every time the machine is brought back from sleep mode.
    The sound card makes a very laud fuzzy noise every time it wants to play a sound and the graphics produce lots of horizontal lines on the screen. I then just have to restart the machine which means loosing all my unsaved work.
    Everything works fine as long as the machine does not enter sleep mode. I have currently disabled the sleep mode to prevent the machine from entering it but I am finding life very hard without it.
    I am very surprised and also disappointed at the fact that Toshiba did not test these machines with Vista 64 Ultimate and 4Gig of RAM!
    Extra info:
    The memory is the same Samsung type as the 1Gig modules supplied by Toshiba originally with the machine, and the part number Toshiba recommends.
    I have tried installing other (more recent) device drivers by Realtek and ATI without any improvements.
    The memory modules pass all tests and are not defective. They have also been tested on my friends Dell notebook with no problems even in sleep mode.
    I have installed my friends Dell 2Gig memory modules in my P200D and they too produce exactly the same results with post-sleep crashes.
    My thoughts are that this must be another BIOS issue unless anyone can shed some light on the issue from another angle.
    Please help! Many thanks in advance.

    Hi Sascha
    Since you are running a Vista 32bit version, the upper limit of the memory recocnised by the machine is 3.2gb which is the maximum a 32bit operating system can address and use. The diffrence here is that I also upgraded my OS to Vista Ultimate 64bit to get yet better performance out of the 64bit dual AMD processor.
    3.2gb of RAM on 32bit OS does not necessarily increase the performance. However, it keeps the performance stable when you open many more programs at the same time since the machine has more RAM to play with before staring to use the much slower hard drive as operating memory (Page File), to keep all thoes open programs running.
    A 64bit OS such as Vista Ultimate 64, recognises the whole 4gb of RAM and much more (for instance, 8gb with 2 x 4gb RAM modules). The 64bit OS itself would generally consume more RAM to start with, however, with 4gb I found the general performance to be much better. Going back to the problem however, my P200D-11R with Ultimate 64 and 4gb RAM refuses to wake up from sleep mode gracefully and the graphics and sound crash every time, forcing me to restart.
    My feelings at present is that eventhough your machine may be slightly different, I bet if you upgrade your OS to 64bit, the machine will start recognising all of the 4gb of RAM and post-sleep crashes will start to appear!

  • I am using oracle Apps ERP in firefox wherein there is a Java Plugin , This is working fine in 3.5 version but as soon as i am upgrading to the latest version oracle is not working and firefox crashes. I can't upgrade even though i wish to

    We are using Oracle ERP in our company which is a web based ERP system. I am using firefox to work in ERP for convinieince pf working and using internet at the same time. This requires a plugin provided by oracle oajinit.exe to be installed in Plugins it is a JAVA plugin which opens the ERP Screens. This works fine in versions prior to 3.6 version of firefox. However, after upgrading to 3.6 version the forms do not open and firefox crashes. Due to this i am not able to upgrade to the latest version else i'll have to operate the ERP in internet explorer and using firefox for browsing which i do not want. The plugin used for the ERP is "* JInitiator 1.3.1.18 for Netscape Navigator (DLL Helper)"

    Firefox 3.6 needs the Java Second Generation Plugin which comes with newer versions than 1.6.0_03 - update Java, the latest version is 1.6.0_22

  • Flash in the latest nightly build is not working and causing crashes. Help?

    I'm using an Asus Transformer tf101. I updated Nightly today and now flash does not work in the program. Once I attempt to play any flash video, the program crashes and it crashes one or two more times after that before I can use it again. I disabled all my plugins and cold booted but to no avail.
    Another issue I am having is that it sometimes freezes on the home screen on startup. This instance usually happens after I try to type an address or use a bookmark. The only way I found around it was to tap one of the three top site icons first. Does anyone have a solution to this?
    edit: I have reverted back to the previous build for now. It isn't as nice as the latest version's style but it plays flash video better than the other mobile browsers out there. Controls like pausing, skipping ahead or putting video to full screen are still hit or miss though.

    It is a known issue with the current Nightly builds. We hope to have it sorted out early next week. I don't believe the Aurora builds are affected by this issue. http://www.mozilla.org/en-US/mobile/aurora/

  • Why are my iTunes and iPhoto crashing every time I try to open them?

    Why are my iphoto and itunes crashing every time I open them?  This is a new problem on my Mac Mini.  Have the latest software on my Mac Mini and the latest iLife sotware.  My mac mini is about 5 years old, always kept up to date.
    Processor  2 GHz Intel Core 2 Duo
    Memory  2 GB 667 MHz DDR2 SDRAM
    Graphics  Intel GMA 950 64 MB
    Software  Mac OS X Lion 10.7.3 (11D50b)

    Hello Majorie,
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at the top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    Also, how much Free Space is on your Hard Drive?
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or 3rd party add-on, Check System Preferences>Accounts>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.

  • Final Cut Pro won't load anything and keeps crashing.. help!

    Just got FCP today  with my new MBP. It was working fine and it crashed. Now I open and it doesn't load the clips and the timeline doesn't show the preview. I've attached a screenshot. It opens for about 30 seconds then crashes. I tried reparing permissions but got nothing. Any ideas?
    As you can see dark blue areas shouldn't obviously have images but they aren't loading FCP is crashing

    What are the specs if your computer? What are the specs of your media?
    Trash your preferences. Trash event and project render files.

  • Booted in Safe Mode now Mail and Safari crash when I try to open them

    I have a problem with InDesign.  I booted in Safe Mode in an attempt to reset my system cache.  Now when I boot normally the InDesign problem persists and Safari and Mail crash every time I try to open them.  When I boot in safe mode Mail, Safari, and InDesign all work wonderfully. 
    I am running Snow Leopard 10.6.8.  Here's the error report:
    Process:         Mail [233]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         4.6 (1085)
    Build Info:      Mail-10850000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [126]
    Date/Time:       2013-04-30 19:16:28.655 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          13946459 sec
    Crashes Since Last Report:           676
    Per-App Interval Since Last Report:  4018594 sec
    Per-App Crashes Since Last Report:   19
    Anonymous UUID:                      6EE64C35-7F24-4FA0-B301-EA0BE68C82D5
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Crashed Thread:  6
    Application Specific Information:
    -[MailApp _restoreMessagesFromDefaults]
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x0000000101fc67c3 __CFBasicHashRehash + 531
    1   com.apple.Foundation                    0x0000000102261b1b -[NSKeyedUnarchiver initForReadingWithData:] + 1662
    2   com.apple.AppKit                        0x0000000102d62a23 loadNib + 116
    3   com.apple.AppKit                        0x0000000102d621a4 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 763
    4   com.apple.mail                          0x0000000100008f77 0x100000000 + 36727
    5   com.apple.mail                          0x0000000100008de8 0x100000000 + 36328
    6   com.apple.mail                          0x000000010000876b 0x100000000 + 34667
    7   com.apple.mail                          0x00000001000073b5 0x100000000 + 29621
    8   com.apple.mail                          0x0000000100004079 0x100000000 + 16505
    9   com.apple.Foundation                    0x0000000102266ad5 _nsnote_callback + 167
    10  com.apple.CoreFoundation                0x000000010201bfd0 __CFXNotificationPost + 1008
    11  com.apple.CoreFoundation                0x0000000102008548 _CFXNotificationPostNotification + 200
    12  com.apple.Foundation                    0x000000010225da36 -[NSNotificationCenter postNotificationName:object:userInfo:] + 101
    13  com.apple.mail                          0x000000010000251d 0x100000000 + 9501
    14  com.apple.AppKit                        0x0000000102dd144a -[NSApplication _postDidFinishNotification] + 100
    15  com.apple.AppKit                        0x0000000102dd137f -[NSApplication _sendFinishLaunchingNotification] + 66
    16  com.apple.AppKit                        0x0000000102e9c35d -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 219
    17  com.apple.AppKit                        0x0000000102e9bfd9 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 77
    18  com.apple.Foundation                    0x00000001022950d6 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 360
    19  com.apple.Foundation                    0x0000000102294f06 _NSAppleEventManagerGenericHandler + 114
    20  com.apple.AE                            0x0000000104ce932b aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 162
    21  com.apple.AE                            0x0000000104ce9224 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 32
    22  com.apple.AE                            0x0000000104ce912b aeProcessAppleEvent + 210
    23  com.apple.HIToolbox                     0x00000001051f6619 AEProcessAppleEvent + 48
    24  com.apple.AppKit                        0x0000000102da1095 _DPSNextEvent + 1191
    25  com.apple.AppKit                        0x0000000102da0801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    26  com.apple.AppKit                        0x0000000102d6668f -[NSApplication run] + 395
    27  com.apple.AppKit                        0x0000000102d5f3b0 NSApplicationMain + 364
    28  com.apple.mail                          0x000000010000205c 0x100000000 + 8284
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x0000000101cbcc0a kevent + 10
    1   libSystem.B.dylib                       0x0000000101cbeadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x0000000101cbe7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x0000000101cbe2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x0000000101cbdc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x0000000101cbdaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x0000000101cbda2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x0000000101cbde3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x0000000101cbdaa5 start_wqthread + 13
    Thread 3:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                       0x0000000101cdea6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x0000000101ce2881 _pthread_cond_wait + 1286
    2   com.apple.Foundation                    0x0000000102290a7a -[NSCondition wait] + 277
    3   com.apple.Foundation                    0x000000010227dcf3 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 916
    4   com.apple.Foundation                    0x0000000102290dd0 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 143
    5   com.apple.MessageFramework              0x0000000100f0de6b -[NSObject(MainThreadMessaging) performSelectorOnMainThread:waitUntilDone:result:args:] + 646
    6   com.apple.mail                          0x000000010020653e 0x100000000 + 2123070
    7   com.apple.mail                          0x000000010000840f 0x100000000 + 33807
    8   com.apple.mail                          0x00000001000080a2 0x100000000 + 32930
    9   com.apple.CoreFoundation                0x000000010204993c __invoking___ + 140
    10  com.apple.CoreFoundation                0x000000010204980d -[NSInvocation invoke] + 141
    11  com.apple.MessageFramework              0x0000000100ef1d0d -[MonitoredInvocation invoke] + 214
    12  com.apple.MessageFramework              0x0000000100ed8d13 -[ThrowingInvocationOperation main] + 31
    13  com.apple.MessageFramework              0x0000000100ed8653 -[_MFInvocationOperation main] + 275
    14  com.apple.Foundation                    0x000000010228fdd0 -[__NSOperationInternal start] + 681
    15  com.apple.Foundation                    0x000000010236dbd5 ____NSOQSchedule_block_invoke_2 + 129
    16  libSystem.B.dylib                       0x0000000101cdfd64 _dispatch_call_block_and_release + 15
    17  libSystem.B.dylib                       0x0000000101cbe2d1 _dispatch_worker_thread2 + 239
    18  libSystem.B.dylib                       0x0000000101cbdc08 _pthread_wqthread + 353
    19  libSystem.B.dylib                       0x0000000101cbdaa5 start_wqthread + 13
    Thread 4:
    0   libSystem.B.dylib                       0x0000000101ca3d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x0000000101ca43ed mach_msg + 59
    2   com.apple.CoreFoundation                0x000000010200f902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x000000010200ed8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00000001022a1b74 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5   com.apple.Foundation                    0x00000001022a1a53 -[NSRunLoop(NSRunLoop) run] + 77
    6   com.apple.MessageFramework              0x0000000100ef03a5 -[RSSInterchange _runManager] + 1445
    7   com.apple.Foundation                    0x0000000102267114 __NSThread__main__ + 1429
    8   libSystem.B.dylib                       0x0000000101cdcfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x0000000101cdce89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x0000000101cbda2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x0000000101cbde3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x0000000101cbdaa5 start_wqthread + 13
    Thread 6 Crashed:
    0   com.apple.security                      0x000000010189c1e9 0x10161b000 + 2626025
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x0000000018742000  rbx: 0x0000000000000000  rcx: 0x000000010effb000  rdx: 0x000000010bffa000
      rdi: 0x000000010effb000  rsi: 0x000000010bffa000  rbp: 0x000000010effcff4  rsp: 0x000000010effcf54
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x000000010189c1e9  rfl: 0x0000000000010246  cr2: 0x000000010effb000
    Binary Images:
           0x100000000 -        0x100338ff7  com.apple.mail 4.6 (1085) <6AA3473B-A8D9-BD76-E344-1A45327E3A23> /Applications/Mail.app/Contents/MacOS/Mail
           0x10040c000 -        0x10064efe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
           0x100789000 -        0x100806fef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x100825000 -        0x100a23fe7  com.apple.CalendarStore 4.0.4 (997.7) <9A357B3C-F083-BEAA-4094-B00B423DDE47> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
           0x100b4f000 -        0x100b4fff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x100b52000 -        0x100b52ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x100b55000 -        0x100b70fff  com.apple.datadetectors 2.1 (102.2) <69DC4391-62F4-9168-A9EF-8EA36F49D77A> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
           0x100b84000 -        0x100be4ff7  com.apple.ExchangeWebServices 1.3 (61) <7DB2989C-1362-8688-C73E-8405734A6566> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
           0x100c70000 -        0x100cfdfff  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <0A7B422E-5D79-9980-2477-05DC2CB5CF7C> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
           0x100d59000 -        0x100d71fff  com.apple.iChat.InstantMessage 5.0.5 (747) <D9784E28-7614-1BAD-8B22-EC12079BCC40> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
           0x100d83000 -        0x100de3fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x100e07000 -        0x100e83ff7  com.apple.ISSupport 1.9.7 (55) <BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
           0x100ed2000 -        0x101215fff  com.apple.MessageFramework 4.6 (1085) <7F3245FF-592B-6E14-4A80-8F2E9ABACC94> /System/Library/Frameworks/Message.framework/Versions/B/Message
           0x1013be000 -        0x10152efff  com.apple.QTKit 7.7 (1793) <6C8A8451-1FE5-79F5-3D6D-8FA846866609> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
           0x101618000 -        0x101618ff7  com.apple.quartzframework 1.5 (1.5) <5BFE5998-26D9-0AF1-1522-55C78E41F778> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x10161b000 -        0x1018a4ff7  com.apple.security 6.1.2 (55002) <772E1B13-8271-02F8-B1FE-023592A7AED7> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10199c000 -        0x1019e5ff7  com.apple.securityinterface 4.0.1 (40418.0.1) <9AF33A9F-2D8C-2AE6-868C-EA836C861031> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x101a17000 -        0x101bb9fe7  com.apple.WebKit 6534.59 (6534.59.8) <1853A066-5479-6549-3114-91FC2F3FF07A> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x101ca3000 -        0x101e64fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
           0x101ef6000 -        0x101facff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
           0x101fc0000 -        0x101fc0ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x101fc3000 -        0x10213afe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x102253000 -        0x102253ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x102256000 -        0x1024d8fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x102650000 -        0x1029edfe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x102b1b000 -        0x102b65fef  com.apple.IMCore 5.0.5 (747) <EA34457E-1946-C6E6-304D-B18233FF68BA> /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
           0x102b87000 -        0x102cc5fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x102d5d000 -        0x103757ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x103d4f000 -        0x103dccfef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
           0x103e2d000 -        0x103e4dfff  com.apple.DirectoryService.Framework 3.6 (621.15) <9AD2A133-4275-5666-CE69-98FDF9A38B7A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x103e57000 -        0x103e94fff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x103ea1000 -        0x103ee2fff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x103f06000 -        0x103f17fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
           0x103f24000 -        0x104043fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
           0x1040ab000 -        0x1040b2fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x1040bb000 -        0x1040cafff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x1040d3000 -        0x1040defff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x1040ec000 -        0x104138fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
           0x104145000 -        0x104149ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
           0x10414c000 -        0x10430afff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <97A75BFB-0DB6-6F44-36B0-97B7F7208ABB> /usr/lib/libicucore.A.dylib
           0x104379000 -        0x10448fff7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
           0x1044b8000 -        0x1044c9ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
           0x1044ce000 -        0x1045a2fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
           0x104616000 -        0x1046cffff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
           0x1046df000 -        0x104a13fef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x104a8d000 -        0x104ad7ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x104b01000 -        0x104bbefff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x104c18000 -        0x104ca8fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x104ce6000 -        0x104d21fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x104d3b000 -        0x104ddbfff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x104e21000 -        0x104e49fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x104e63000 -        0x104e69ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x104e72000 -        0x104e88fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
           0x104e91000 -        0x104e9fff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
           0x104ea3000 -        0x104eceff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
           0x104ed9000 -        0x10500efff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x105088000 -        0x105089ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x10508e000 -        0x105173fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x1051c2000 -        0x1054c0fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x1055ec000 -        0x1055f7ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x105601000 -        0x105648ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10566d000 -        0x1056ecfe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x105722000 -        0x105723fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
           0x105727000 -        0x10573dfe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x10574a000 -        0x105e46ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x105f38000 -        0x1060f7fff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <92882FD3-CB3F-D0BE-DDDA-43B4BEE10F58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
           0x106163000 -        0x1061e1ff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
           0x10621f000 -        0x1062b9fff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x1062e2000 -        0x1063a3fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x1063e0000 -        0x106433ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10645f000 -        0x106474ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x106482000 -        0x106507ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10653d000 -        0x10657efef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x106596000 -        0x1065aaff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x1065bb000 -        0x1065bbff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x1065be000 -        0x106614fe7  libTIFF.dylib ??? (???) <2DBEC120-DAA7-3789-36A2-A205BCDF2D72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x106622000 -        0x106627fff  libGIF.dylib ??? (???) <3BAD0DE8-8151-68B0-2244-A4541C738972> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x10662c000 -        0x10664dfe7  libPng.dylib ??? (???) <D8EC7740-EE32-865A-2F75-C9EDE2135510> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x106656000 -        0x106658fff  libRadiance.dylib ??? (???) <BF694EE5-6FDA-553A-CC89-F7135618E9C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
           0x10665c000 -        0x106683ff7  libJPEG.dylib ??? (???) <08758593-6436-B29E-1DA8-F15597835EC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x10668b000 -        0x106768fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x106777000 -        0x106777ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x10677a000 -        0x1067c2ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x1067ca000 -        0x106834fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x10683e000 -        0x107048fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x107091000 -        0x1074d4fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x107661000 -        0x107662ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x107666000 -        0x107728fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x10781f000 -        0x107859fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <4F2A4397-89BD-DEAC-4971-EE838FFA0964> /usr/lib/libcups.2.dylib
           0x107868000 -        0x107918fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x10793e000 -        0x10795ffff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
           0x107969000 -        0x107969ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x10796c000 -        0x1079c1ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x1079df000 -        0x107a94fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x107ac7000 -        0x107aecff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x107b05000 -        0x107b14fef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x107b1d000 -        0x107b4efff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x107b55000 -        0x107b78fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x107b81000 -        0x107b87ff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x107b90000 -        0x107bd9fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x107be8000 -        0x107bfcfff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x107c0c000 -        0x107d26fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x107d47000 -        0x107d4aff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x107d4f000 -        0x107d54fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x107d59000 -        0x107de5fef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x107e29000 -        0x107e2fff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x107e37000 -        0x107e50fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x107e65000 -        0x107eb4ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x107ed5000 -        0x107ee7fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
           0x107eee000 -        0x107f2bff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D> /usr/lib/libssl.0.9.8.dylib
           0x107f41000 -        0x107f4cfff  com.apple.dotMacLegacy 3.2 (266) <80F00DE2-4C50-0FD9-5C6E-3EAA1599277B> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
           0x107f58000 -        0x1080b8ff7  com.apple.syncservices 5.2 (578.3) <F86C878E-8B5E-DBCE-8592-7AF88DE53261> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
           0x10816e000 -        0x1081b8ff7  com.apple.DAVKit 4.0.3 (732.2) <7DC4C8B4-9259-2D5D-BDA5-82F0DE3C95CA> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
           0x1081e6000 -        0x10825aff7  com.apple.WhitePagesFramework 10.6.0 (140.0) <546E204C-AC7A-030C-DC32-125A3E422FB5> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
           0x108298000 -        0x1082d2fff  com.apple.bom 10.0 (164) <E5C9AFBD-68C1-197E-72B0-B43295DC87DC> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x1082e2000 -        0x108331fe7  com.apple.iCalendar 1.0.3 (54) <539A5A20-99D0-25F8-EB75-BD8437611AA6> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
           0x108365000 -        0x108372fff  com.apple.NSServerNotificationCenter 3.0 (3.0) <FF7063D0-A25F-C22E-FA20-3225ADF089E2> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
           0x10837e000 -        0x10839efef  com.apple.DotMacSyncManager 2.0.3 (446.9) <E8F9E7E2-A696-4111-C4FF-20AB5DFBC3FC> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
           0x1083b7000 -        0x1083caff7  com.apple.syncservices.syncservicesui 5.2 (578.3) <4E9E62DC-148A-CC7E-601A-AC095DD5C95A> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
           0x1083d9000 -        0x1083dfff7  com.apple.AOSNotification 1.2.0 (124) <19CCCD17-6888-58F3-17B6-7DC5D49276A4> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
           0x1083e6000 -        0x1083f2fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
           0x1083f7000 -        0x1083f9fef  com.apple.ExceptionHandling 1.5 (10) <F2867B93-A56A-974F-9556-266BCE394057> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
           0x1083fe000 -        0x108455fff  com.apple.Symbolication 1.1 (67) <73B6FC15-9E05-69E2-2955-14F82F9BC337> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x108488000 -        0x10848dff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x108495000 -        0x108498fff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x10849e000 -        0x1084b5fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x1084cf000 -        0x1084eaff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x1084fb000 -        0x1084fdfff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x108502000 -        0x108505ff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x10850a000 -        0x108548fef  com.apple.DebugSymbols 1.1 (70) <C3D11461-E118-09DB-D9D7-8972B3FD160F> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x108560000 -        0x1085d2fef  com.apple.CoreSymbolication 2.0 (23) <06F8561E-4B36-7BF6-31BA-64091B3D8058> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x108615000 -        0x10861cff7  com.apple.KerberosHelper 2.1 (1.0) <8BCCEA2D-7CE7-1B3E-F371-AB8485A1588F> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
           0x108623000 -        0x108630ff7  com.apple.AppleFSCompression 24.4 (1.0) <56B27685-B6A7-7FD7-85F3-402C4E0C988E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x108638000 -        0x108641ff7  com.apple.aps.framework 1.2 (1.2) <2E09D42F-2021-C995-44D0-B80AAAAA99E5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
           0x10864a000 -        0x1086acfe7  com.apple.datadetectorscore 2.0 (80.7) <34592AFF-B1B8-2277-B013-70193E4E1691> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x1086e0000 -        0x108a03fe7  com.apple.JavaScriptCore 6534.59 (6534.59.6) <029D160C-5D86-C281-5071-66CA09D1A95F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x108a92000 -        0x109afcfff  com.apple.WebCore 6534.59 (6534.59.6) <24B753DC-1FD4-FFCC-5F66-44799244A125> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x10a239000 -        0x10a473fef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x10a5c3000 -        0x10a60afff  com.apple.QuickLookFramework 2.3 (327.7) <A8169A96-FAE6-26B2-A9A9-C78BA5787146> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x10a635000 -        0x10a676fef  com.apple.CoreMedia 0.484.60 (484.60) <6B73A514-C4D5-8DC7-982C-4E4F0231ED77> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x10a693000 -        0x10a7bbff7  com.apple.MediaToolbox 0.484.60 (484.60) <F921A5E6-E260-03B4-1458-E5814FA1924D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
           0x10a82e000 -        0x10ad34ff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
           0x10adfc000 -        0x10ae41fff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
           0x10ae64000 -        0x10aed5ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
           0x10aee0000 -        0x10b149fff  com.apple.QuartzComposer 4.2 ({156.30}) <C05B97F7-F543-C329-873D-097177226D79> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
           0x10b2a3000 -        0x10b332fff  com.apple.PDFKit 2.5.5 (2.5.5) <18C99AB3-DACC-3654-200E-0BD09EBFB374> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
           0x10b388000 -        0x10b3b7ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
           0x10b3e6000 -        0x10b468fff  com.apple.QuickLookUIFramework 2.3 (327.7) <73407EAE-6854-E444-37B1-019AAEDEB31B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
           0x10b4be000 -        0x10b4f7ff7  com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
           0x10b523000 -        0x10b58bfff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
           0x10b5c1000 -        0x10b6cbff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
           0x10b73e000 -        0x10b7aafe7  com.apple.CorePDF 1.4 (1.4) <06AE6D85-64C7-F9CC-D001-BD8BAE31B6D2> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
           0x10b7e9000 -        0x10b7f3fff  com.apple.DisplayServicesFW 2.3.3 (289) <97F62F36-964A-3E17-2A26-A0EEF63F4BDE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
           0x10b7fe000 -        0x10b849fef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
           0x10b87d000 -        0x10b87efff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
           0x10b883000 -        0x10b88bfff  com.apple.iChat.IMUtils 5.0.5 (747) <8A019B06-52FB-0B23-8A8B-7C2DA5465934> /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
           0x10b895000 -        0x10b8b8ff7  com.apple.iChat.IMFoundation 5.0.5 (747) <B4C34872-5157-27C0-37F2-77D11137BD8A> /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
           0x10b8dd000 -        0x10b920fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
           0x10b931000 -        0x10b95aff7  com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <778F7753-F0DD-5B89-0908-B2EC9B66B30A> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
           0x10b96b000 -        0x10ba6fff7  com.apple.PubSub 1.0.5 (65.28) <87EB5C5F-E4E2-E4FD-70EE-773B3A40ABCD> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
           0x10bfe4000 -        0x10bfe8ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
           0x10ce60000 -        0x10ce6dfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
           0x10cefb000 -        0x10cf39fe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistry.dylib
           0x10cf58000 -        0x10cf8bff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libTrueTypeScaler.dylib
           0x10cf97000 -        0x10cfdaff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
           0x121306000 -        0x12174dfef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib

    I don't see how you could install incompatible apps because you cannot apps that are not compatible. You restored already and sometimes just rebooting the iPad helps with what you were experiencing. I don't if it will do any good now, but you might as well give it a try.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    If you downloaded the latest version of iTunes, perhaps the download or installation of the software was corrupt. You could try deleting iTunes and reinstall it. What OS are you - Windows or Mac OS X?
    I don't think that this will work, but try it anyway... Try downloading another app - any free app will be fine.

  • Adobe Flash Player and Shockwave crashing has disabled my computer

    I have downloaded a second flash player and it is still the same. Firefox has been crashing daily for a few weeks. I noticed that your adblocker plus was updated 6/4. Since then I have almost no use of firefox, because the Adobe flash player 13.0.r0 and Shockwave crash notices are constantly popping up. Could that update have something to do with why the flash players are not working? Below are an example of the crash details.
    Thanks for the help. I prefer your browser, but this has made it non-functioning.
    In trying to fix it, a window came up that asked would I like to change it back to a previous working image, which was Windows XP. Although this computer is Windows 7, I clicked the box yes, and said I wanted it to work like Windows XP. I see in your Operating System below, that it reads Windows Xp, but this computer is actually Windows 7. I can't find that menu to change unclick and change it back, so that it is working as Windows 7.
    Problem Event Name: APPCRASH
    Application Name: FlashPlayerPlugin_13_0_0_214.exe
    Application Version: 13.0.0.214
    Application Timestamp: 5359c61d
    Fault Module Name: StackHash_27eb
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 00000000
    Exception Code: c0000005
    Exception Offset: 6c2b92cd
    OS Version: 6.1.7601.2.1.0.256.48
    Locale ID: 1033
    Additional Information 1: 27eb
    Additional Information 2: 27eb358fe674a6f15dafe56d42bb9bf3
    Additional Information 3: 2f06
    Additional Information 4: 2f06c18113e6d7c00e6b91fa1fde84b6
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
    C:\Windows\system32\en-US\erofflps.txt

    AdBlock Plus isn't maintained or connected to Mozilla as they didn't develop it. ABP and Flash don't interfere with each other except on same cases that ABP blocks Flash content.
    You can Try disabling Hardware Acceleration. <br>
    #Go to this [http://helpx.adobe.com/flash-player/kb/video-playback-issues.html#main_Solve_video_playback_issues Adobe Flash Player Help page].
    #Right-click on the Flash Player logo on that page.
    #Click on '''Settings''' in the context menu. The Adobe Flash Player Settings screen will open.
    # Click on the icon at the bottom-left of the Adobe Flash Player Settings window to open the Display panel. <br/> <br/>[[Image:fpSettings1.PNG]] <br/>
    # Remove the check mark from '''Enable hardware acceleration'''.
    # Click '''Close''' to close the Adobe Flash Player Settings Window.
    # Restart Firefox.
    This [http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html Flash Player Help - Display Settings page] has more information on Flash Player hardware acceleration, if you're interested.
    If that doesn't work try Try to disable Protected Mode in Flash 11.3 and above by adding the line ProtectedMode=0 to the Flash "mms.cfg" file located in one of these locations: [46]
    (Windows 32bit) C:\Windows\System32\Macromed\Flash
    (Windows 64bit) C:\Windows\SysWOW64\Macromed\Flash
    For example, on a Windows 7 64-bit system, open the C:\Windows\SysWOW64\Macromed\Flash folder, copy the file "mms.cfg" to the desktop, open it in Notepad, add a new line <code>ProtectedMode=0 </code> and then close Notepad, saving your changes. Next, go back to the C:\Windows\SysWOW64\Macromed\Flash folder, rename the original file to "mms.cfgBAK" (to save it as a backup) and then drag and drop in the modified "mms.cfg" file from the desktop. [47] [48] [49]
    Note: To re-enable Flash Protected Mode, either restore a backup of the original mms.cfg file, if you saved one, or else re-edit the mms.cfg file to remove the <code>ProtectedMode=0 l</code> line you added. Updating Flash Player or installing a newer version does not automatically re-enable Protected Mode
    Flash has been a pain since day 1 and Mozilla is currently working to replace Flash with Shumway. Unfortunately it's in the Nightly channel, doesn't come activated automatically and it isn't quite ready for normal usage. I just tested Nightly yesterday with Shumway and it wouldn't play.

  • Firefox crashes when opening and the crash report I get is Firefox 3.6.3 Crash Report [@ strlen | nspr4.dll@0x15f9f ].

    == Issue
    ==
    Firefox is crashing or closing unexpectedly
    == Description
    ==
    Firefox 3.6.3 crashes when opening and the Crash Report [[@ strlen nspr4.dll@0x15f9f ]. It was working perfectly fine and the last three days, I am having difficulty in opening firefox. It crashes with the above crash report every time I open. I came across the bad image error and did a clean reinstall multiple times and that did not help. I have firebug and firecookies as an addon.
    == Crash ID(s)
    ==
    bp-5972b384-791f-4667-b3cb-051812100504
    == Firefox version
    ==
    3.6
    == Operating system
    ==
    windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.1.249.1064 Safari/532.5
    == Plugins installed
    ==
    firebug and firecookie

    Usually doesn't immediately crash, although that happens also. Usually hangs, then crashes.
    Addons are WHY I use Firefox when it works. I am NOT on the bleeding edge any longer. I could go back to boring, boring, Chrome.

  • Safari and firefox crashes when trying to upload

    Safari and Firefox crash when I try to upload something through the browser. Before when I would upload a file, a finder window would pop up, but it immediately crashes before this window appears. I tried logging in as a different user in the OS and that didn't work. BUT when I rebooted in safe mode. I was able to get the finder pop up window to upload the file.
    Here is the crash report:
    Process:         Safari [1076]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.6 (5533.22.3)
    Build Info:      WebBrowser-75332203~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [410]
    Interval Since Last Report:          124 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  106 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2012-06-19 13:18:10.027 -0600
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID: 
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  14
    Thread 0:
    0   libobjc.A.dylib                         0x935a890d objc_msgSend_stret + 45
    1   com.apple.AppKit                        0x903c96ef -[NSView convertRect:toView:] + 226
    2   com.apple.AppKit                        0x903c8b28 -[NSView setNeedsDisplayInRect:] + 303
    3   com.apple.WebKit                        0x9751ffb0 __ZL21setNeedsDisplayInRectP6NSViewP13objc_selector7_NSRect + 256
    4   com.apple.AppKit                        0x903c8926 -[NSView setNeedsDisplay:] + 76
    5   com.apple.AppKit                        0x90510864 -[NSClipView initWithFrame:] + 168
    6   com.apple.AppKit                        0x90510669 -[NSScrollView initWithFrame:] + 274
    7   com.apple.AppKit                        0x90618ecc -[NSBrowser _createColumn:empty:] + 117
    8   com.apple.AppKit                        0x90618dde columnToColumnContentDelta + 205
    9   com.apple.AppKit                        0x906194fa -[NSBrowser columnWidthForColumnContentWidth:] + 14
    10  com.apple.AppKit                        0x906189ed -[NSBrowser frameOfColumn:] + 1380
    11  com.apple.AppKit                        0x906183fd -[NSBrowser _containerRelativeFrameOfColumn:] + 59
    12  com.apple.AppKit                        0x90604d7c -[NSBrowser _calcNumVisibleColumnsAndColumnSize] + 557
    13  com.apple.AppKit                        0x90603e82 -[NSBrowser _tileContinuousScrollingBrowser] + 1124
    14  com.apple.AppKit                        0x90619b88 -[NSBrowser setMinColumnWidth:] + 71
    15  com.apple.AppKit                        0x90618224 -[NSNavBrowserDelegate setBrowser:] + 484
    16  com.apple.AppKit                        0x90617ff3 -[NSNavDataSource _createBrowserDelegate] + 129
    17  com.apple.AppKit                        0x9060f2c6 -[NSNavDataSource activeFileListDelegate] + 210
    18  com.apple.AppKit                        0x90617e2d -[NSNavDataSource setFileListMode:] + 170
    19  com.apple.AppKit                        0x90617c9b -[NSSavePanel _readFileListMode] + 283
    20  com.apple.AppKit                        0x906ecd3d -[NSSavePanel(NSSavePanelRuntime) beginSheetForDirectory:file:types:modalForWindow:modalDelegate:didEndSelector:c ontextInfo:] + 91
    21  com.apple.Safari                        0x0014c8a5 0x1000 + 1357989
    22  com.apple.WebKit                        0x9750eef8 __ZL12CallDelegateP7WebViewP11objc_objectP13objc_selectorS2_a + 328
    23  com.apple.WebKit                        0x9750a74e WebChromeClient::runOpenPanel(WebCore::Frame*, ***::PassRefPtr<WebCore::FileChooser>) + 318
    24  com.apple.WebCore                       0x95327469 WebCore::Chrome::runOpenPanel(WebCore::Frame*, ***::PassRefPtr<WebCore::FileChooser>) + 57
    25  com.apple.WebCore                       0x950eb979 WebCore::RenderFileUploadControl::click() + 105
    26  com.apple.WebCore                       0x950eb8fe WebCore::FileInputType::handleDOMActivateEvent(WebCore::Event*) + 46
    27  com.apple.WebCore                       0x94b6e01d WebCore::HTMLInputElement::defaultEventHandler(WebCore::Event*) + 477
    28  com.apple.WebCore                       0x94a552e5 WebCore::EventDispatcher::dispatchEvent(***::PassRefPtr<WebCore::Event>) + 949
    29  com.apple.WebCore                       0x94a54ee9 WebCore::EventDispatchMediator::dispatchEvent(WebCore::EventDispatcher*) const + 41
    30  com.apple.WebCore                       0x94a54d69 WebCore::EventDispatcher::dispatchEvent(WebCore::Node*, WebCore::EventDispatchMediator const&) + 41
    31  com.apple.WebCore                       0x94a54ce7 WebCore::Node::dispatchEvent(***::PassRefPtr<WebCore::Event>) + 55
    32  com.apple.WebCore                       0x94b6efb7 WebCore::ScopedEventQueue::dispatchEvent(***::PassRefPtr<WebCore::Event>) const + 71
    33  com.apple.WebCore                       0x94b6ef1a WebCore::ScopedEventQueue::enqueueEvent(***::PassRefPtr<WebCore::Event>) + 90
    34  com.apple.WebCore                       0x94b6ee23 WebCore::EventDispatcher::dispatchScopedEvent(WebCore::Node*, ***::PassRefPtr<WebCore::Event>) + 99
    35  com.apple.WebCore                       0x94e60346 WebCore::Node::dispatchScopedEvent(***::PassRefPtr<WebCore::Event>) + 38
    36  com.apple.WebCore                       0x94b6ec48 WebCore::Node::dispatchUIEvent(***::AtomicString const&, int, ***::PassRefPtr<WebCore::Event>) + 248
    37  com.apple.WebCore                       0x94a55f9a WebCore::Node::defaultEventHandler(WebCore::Event*) + 954
    38  com.apple.WebCore                       0x94a552e5 WebCore::EventDispatcher::dispatchEvent(***::PassRefPtr<WebCore::Event>) + 949
    39  com.apple.WebCore                       0x94c47958 WebCore::MouseEventDispatchMediator::dispatchEvent(WebCore::EventDispatcher*) const + 296
    40  com.apple.WebCore                       0x94a54d69 WebCore::EventDispatcher::dispatchEvent(WebCore::Node*, WebCore::EventDispatchMediator const&) + 41
    41  com.apple.WebCore                       0x94c474f0 WebCore::Node::dispatchMouseEvent(WebCore::PlatformMouseEvent const&, ***::AtomicString const&, int, WebCore::Node*) + 128
    42  com.apple.WebCore                       0x94c4686e WebCore::EventHandler::dispatchMouseEvent(***::AtomicString const&, WebCore::Node*, bool, int, WebCore::PlatformMouseEvent const&, bool) + 126
    43  com.apple.WebCore                       0x94c4db0f WebCore::EventHandler::handleMouseReleaseEvent(WebCore::PlatformMouseEvent const&) + 1231
    44  com.apple.WebCore                       0x94c4d552 WebCore::EventHandler::mouseUp(NSEvent*) + 386
    45  com.apple.WebKit                        0x974c4327 -[WebHTMLView mouseUp:] + 263
    46  com.apple.AppKit                        0x904bab95 -[NSWindow sendEvent:] + 5539
    47  com.apple.Safari                        0x00040534 0x1000 + 259380
    48  com.apple.Safari                        0x000404c1 0x1000 + 259265
    49  com.apple.AppKit                        0x904876a5 -[NSApplication sendEvent:] + 2939
    50  eia                                     0x16d24026 -[EInjectedAgent(Activity) sendEvent:] + 375
    51  com.apple.Safari                        0x000377c0 0x1000 + 223168
    52  com.apple.AppKit                        0x903e4fe7 -[NSApplication run] + 867
    53  com.apple.AppKit                        0x903b21d8 NSApplicationMain + 574
    54  com.apple.Safari                        0x0000acee 0x1000 + 40174
    Thread 1:
    0   libSystem.B.dylib                       0x92b2334e __semwait_signal + 10
    1   libSystem.B.dylib                       0x92b78d81 sleep$UNIX2003 + 63
    2   com.apple.JavaScriptCore                0x9458fab1 ***::TCMalloc_PageHeap::scavengerThread() + 145
    3   com.apple.JavaScriptCore                0x9458fd8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    5   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x92b2334e __semwait_signal + 10
    1   libSystem.B.dylib                       0x92b4dccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.WebCore                       0x94a18587 WebCore::IconDatabase::syncThreadMainLoop() + 279
    3   com.apple.WebCore                       0x94a15e19 WebCore::IconDatabase::iconDatabaseSyncThread() + 761
    4   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    5   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x92b1c166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92b2395c mach_msg + 72
    2   com.apple.CoreFoundation                0x934cbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x934ccaa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork                     0x9014418c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    6   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x92b2334e __semwait_signal + 10
    1   libSystem.B.dylib                       0x92b4dccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x943e46b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x94a3177c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    5   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x92b1c166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92b2395c mach_msg + 72
    2   com.apple.CoreFoundation                0x934cbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x934ccaa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                        0x0002f33d 0x1000 + 189245
    5   com.apple.Safari                        0x0002f08a 0x1000 + 188554
    6   com.apple.Safari                        0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    8   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x92b1c166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92b2395c mach_msg + 72
    2   libSystem.B.dylib                       0x92babf15 thread_suspend + 97
    3   ???                                     0x154ac9b5 0 + 357222837
    Thread 7:
    0   libSystem.B.dylib                       0x92b1c166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92b2395c mach_msg + 72
    2   com.apple.CoreFoundation                0x934cbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x934ccb04 CFRunLoopRun + 84
    4   eia                                     0x16cee5b6 __ZL14spectorRunLoopPv + 239
    5   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    6   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x92b6b60a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    2   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x92b1c166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92b2395c mach_msg + 72
    2   com.apple.CoreFoundation                0x934cbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x934ccaa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x97b6c520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation                    0x97b08dfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x97b089a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    8   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x92b2334e __semwait_signal + 10
    1   libSystem.B.dylib                       0x92b4dccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x943e46b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x94a3177c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    5   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x92b2334e __semwait_signal + 10
    1   libSystem.B.dylib                       0x92b4dccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x943e46b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.Safari                        0x001ae478 0x1000 + 1758328
    4   com.apple.Safari                        0x00044cdd 0x1000 + 277725
    5   com.apple.Safari                        0x00044c2d 0x1000 + 277549
    6   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    7   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x92b1c166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92b2395c mach_msg + 72
    2   com.apple.CoreFoundation                0x934cbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x934ccaa8 CFRunLoopRunInMode + 88
    4   com.apple.audio.CoreAudio               0x92a2c5f8 HALRunLoop::OwnThread(void*) + 160
    5   com.apple.audio.CoreAudio               0x92a2c480 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    7   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x92b1c166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92b2395c mach_msg + 72
    2   ....audio_hijack_server.hermes          0x006ed356 ah_serv_loop + 161
    3   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    4   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 14 Crashed:
    0   libSystem.B.dylib                       0xffff07c2 __memcpy + 34 (cpu_capabilities.h:246)
    1   eia                                     0x16d7813a char** std::uninitialized_copy<char* const*, char**>(char* const*, char* const*, char**) + 45
    2   eia                                     0x16d78198 void std::vector<char*, std::allocator<char*> >::_M_range_initialize<char* const*>(char* const*, char* const*, std::forward_iterator_tag) + 82
    3   eia                                     0x16d78217 std::vector<char*, std::allocator<char*> >::vector<char* const*>(char* const*, char* const*, std::allocator<char*> const&) + 67
    4   eia                                     0x16d78034 Mine_posix_spawn(int*, char const*, void* const*, void* const*, char* const*, char* const*) + 52
    5   ...ple.CoreServices.OSServices          0x98072916 TaskLauncher::launch() + 732
    6   ...ple.CoreServices.OSServices          0x98072523 MasterBrowser::browse(__CFString const*) + 407
    7   ...ple.CoreServices.OSServices          0x980721ef MasterBrowser::timerCallBack(__CFRunLoopTimer*, void*) + 61
    8   com.apple.CoreFoundation                0x934cc8f5 CFRunLoopRunSpecific + 4469
    9   com.apple.CoreFoundation                0x934ccb04 CFRunLoopRun + 84
    10  com.apple.DesktopServices               0x97fd0d0f TSystemNotificationTask::SystemNotificationTaskProc(void*) + 123
    11  ...ple.CoreServices.CarbonCore          0x93dbafbb PrivateMPEntryPoint + 56
    12  libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    13  libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x92b1c166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x92b2395c mach_msg + 72
    2   com.apple.CoreFoundation                0x934cbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x934ccb04 CFRunLoopRun + 84
    4   com.apple.DesktopServices               0x97fd0e88 TFSEventsNotificationTask::FSEventsNotificationTaskProc(void*) + 216
    5   ...ple.CoreServices.CarbonCore          0x93dbafbb PrivateMPEntryPoint + 56
    6   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    7   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x92b47306 getattrlist$UNIX2003 + 10
    1   ...ple.CoreServices.CarbonCore          0x93d79e2f GetVolFSAttributes(VolumeInfo*, unsigned long, char const*, unsigned long, unsigned long, FSAttributeInfo*, unsigned long, unsigned long, FSVolAttributeInfo*, unsigned char*) + 605
    2   ...ple.CoreServices.CarbonCore          0x93d7b0f9 VolFSMount::_getattrs(unsigned long, char const*, unsigned long, unsigned long, FSAttributeInfo*, unsigned long, unsigned char*) + 75
    3   ...ple.CoreServices.CarbonCore          0x93d7b07e FSMount::getattrs(unsigned long, char const*, unsigned long, unsigned long, FSAttributeInfo*, unsigned long, unsigned char*) + 224
    4   ...ple.CoreServices.CarbonCore          0x93d7af93 GetFSRefAttributes(FSMount*, FSRefPrivate const*, unsigned long, FSAttributeInfo*, unsigned long, char*) + 173
    5   ...ple.CoreServices.CarbonCore          0x93d7abb8 PBGetCatalogInfoSync + 280
    6   ...ple.CoreServices.CarbonCore          0x93d7aa9d FSGetCatalogInfo + 53
    7   com.apple.DesktopServices               0x97fd20c3 LockGetCatalogInfo(FSRef const&, unsigned long, FSCatalogInfo*, HFSUniStr255*, FSSpec*, FSRef*) + 83
    8   com.apple.DesktopServices               0x97fd2012 THFSPlusRef::Initialize(FSRef const&) + 72
    9   com.apple.DesktopServices               0x97fe2f45 TPathName::GetParent(THFSPlusRef&, bool&, bool&) + 169
    10  com.apple.DesktopServices               0x97fe23f5 TPathName::GetPathNameFromFSRef(FSRef const&, short&) + 225
    11  com.apple.DesktopServices               0x97fe21a3 TNode::GetNodeFromFSRef(FSRef const&, TNodePtr&, unsigned long) + 75
    12  com.apple.DesktopServices               0x97fe2152 TNode::FindUserFolder(unsigned long, bool, TNodePtr&) + 68
    13  com.apple.DesktopServices               0x97fe20e0 TNode::SetSpecialNodeFromOStype(unsigned long) + 48
    14  com.apple.DesktopServices               0x97fe2027 TNode::SetSpecialNode(unsigned long, TNodePtr&) + 237
    15  com.apple.DesktopServices               0x97fe7067 TNode::SetHomeNode() + 41
    16  com.apple.DesktopServices               0x97fe1fd6 TNode::SetSpecialNode(unsigned long, TNodePtr&) + 156
    17  com.apple.DesktopServices               0x97fdfa57 TNode::GetSpecialNodeWithStatus(unsigned long, OpaqueNodeRequest* const&, unsigned long, TNodePtr&) + 367
    18  com.apple.DesktopServices               0x97fe1d15 TNode::GetSpecialNode(unsigned long, OpaqueNodeRequest* const&, unsigned long) + 45
    19  com.apple.DesktopServices               0x98018a74 TNode::GetHomeNode() + 48
    20  com.apple.DesktopServices               0x9801ce1b THFSPlusCatalog::IsHomeVolume() const + 23
    21  com.apple.DesktopServices               0x97fd8f55 TNode::FindFolder(unsigned long, bool, FSRef&) const + 83
    22  com.apple.DesktopServices               0x980333de TMountPointList::AddVolume(short, bool) + 732
    23  com.apple.DesktopServices               0x97fd1463 TMountPointList::Find(short, TNode::StPopulating*) + 63
    24  com.apple.DesktopServices               0x97fe30aa TMountPointList::VolumeIsNotAutoMounted(short const&, bool&) + 48
    25  com.apple.DesktopServices               0x97fe2ee1 TPathName::GetParent(THFSPlusRef&, bool&, bool&) + 69
    26  com.apple.DesktopServices               0x97fe23f5 TPathName::GetPathNameFromFSRef(FSRef const&, short&) + 225
    27  com.apple.DesktopServices               0x97fe21a3 TNode::GetNodeFromFSRef(FSRef const&, TNodePtr&, unsigned long) + 75
    28  com.apple.DesktopServices               0x97fe167e TNode::CreateVirtualAliasRecord(OpaqueSFLItemRef*, TNodePtr&, VirtualAliasRecord**, bool) + 1962
    29  com.apple.DesktopServices               0x9803837b TSFLSynchronizer::TSFLSynchronizer(TNodePtr const&, OpaqueSFLRef*, bool) + 181
    30  com.apple.DesktopServices               0x97fdee05 TNode::PopulateVirtualContainerFromSFL(OpaqueSFLRef*, bool) + 197
    31  com.apple.DesktopServices               0x97fdc6fa TNodeSyncTask::HandleInternalEventVirtualChildListChanged(TCountedPtr<TNodeEven t> const&, TNodePtr const&) + 110
    32  com.apple.DesktopServices               0x97fdc584 TNodeSyncTask::HandleInternalEvent(TCountedPtr<TNodeEvent> const&) + 320
    33  com.apple.DesktopServices               0x97fdbeb6 TNodeSyncTask::SyncTaskProc(void*) + 160
    34  ...ple.CoreServices.CarbonCore          0x93dbafbb PrivateMPEntryPoint + 56
    35  libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    36  libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x92b1c1c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x92b4e1af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x92b4fa33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x93d9bc62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore          0x93dbca60 MPWaitOnQueue + 208
    5   com.apple.DesktopServices               0x97fe3791 TPropertyTask::PropertyTaskProc(void*) + 105
    6   ...ple.CoreServices.CarbonCore          0x93dbafbb PrivateMPEntryPoint + 56
    7   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    8   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x92b4c8c6 kevent + 10
    1   libSystem.B.dylib                       0x92b4d055 _pthread_start + 321
    2   libSystem.B.dylib                       0x92b4cf12 thread_start + 34
    Thread 14 crashed with X86 Thread State (32-bit):
      eax: 0xffff07a0  ebx: 0x1aff6800  ecx: 0x00000001  edx: 0x00000004
      edi: 0x1aff6800  esi: 0x00000000  ebp: 0xb064b728  esp: 0xb064b720
       ss: 0x0000001f  efl: 0x00010202  eip: 0xffff07c2   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -   0x5d3ffc  com.apple.Safari 5.0.6 (5533.22.3) <79731a26a77704fb4831e3adc020a381> /Applications/Safari.app/Contents/MacOS/Safari
      0x64f000 -   0x65afff  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x662000 -   0x68cfe8  com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x69d000 -   0x6acffc  SyndicationUI ??? (???) <4cb2f7ffaf3185ff4e036082064e7121> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
      0x6e8000 -   0x6f4ff7 +com.rogueamoeba.audio_hijack_server.hermes 2.2.8 (2.2.8) <76a0d08c2458182bd73bbe23b114cbf6> /usr/local/hermes/modules/Instant Hijack Server.hermesmodule/Contents/MacOS/Instant Hijack Server
    0x1c5a000 -  0x1c5dff2 +com.macromedia.Flash Player.plugin 10.3.183.11 (10.3.183.11) <b16bc6e0fdeae1525129039546e2a402> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1c73000 -  0x1c76fff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <51c811377017028f8904ad779e6a1344> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1c93000 -  0x1c99fff  com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) <a0a4389b5ac52ab84397d2b25c9d3b9c> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1201c000 - 0x12403fff  com.apple.RawCamera.bundle 3.4.0 (545) <46f9387243c4db157889522a00d16c32> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x15600000 - 0x15605ff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16ce6000 - 0x16dc3ffb +eia ??? (???) <f410cb03c9ef3496996cb8a2d1e7f72a> /usr/local/esps/eBlaster.app/Contents/SharedSupport/eia
    0x16e59000 - 0x16ed7fef  com.tcltk.tcllibrary 8.4.7 b (8.4.7 b) <dba2ca176a0ddc67636a3d8534854eb3> /System/Library/Frameworks/Tcl.framework/Versions/8.4/Tcl
    0x17f08000 - 0x17f0bfef  com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x17f10000 - 0x17f75fde  com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x17f95000 - 0x17fdbfc3  com.apple.motion.component 1.0 (1.0) <77973a134e79426f853f2318e52a2207> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x17fe1000 - 0x17fe402f +Motion ??? (???) <b5e862eee0ff4f86a78998e3e601a18c> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x18106000 - 0x18107fff  com.apple.JavaPluginCocoa 12.9.0 (12.9.0) <5451adf6a77e3088b1a096fe1e16b189> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x1810d000 - 0x18111ffd  JavaLaunching ??? (???) <41aa04fadb9589ab9c249284090b2ef7> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x196ac000 - 0x196bafeb  libSimplifiedChineseConverter.dylib ??? (???) <68f130a585c3f580d166ef7cbbf47e69> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x196fc000 - 0x1970efff  libTraditionalChineseConverter.dylib ??? (???) <6108541a452ff07d2f67db4a488b9d22> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1a34e000 - 0x1ad9cfe3 +com.macromedia.FlashPlayer-10.4-10.5.plugin 10.3.183.11 (10.3.183.11) <b6003283e6137751b96b7f9a893219b9> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x70000000 - 0x700e6ff2  com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x9013bfe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x90141000 - 0x901e8fec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x901e9000 - 0x901f1fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x901f2000 - 0x901f9ff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x901fa000 - 0x9022bffb  com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9022c000 - 0x902bffff  com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x902c0000 - 0x9034dff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9034e000 - 0x9035dffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <182986b74247b459b2a67a47071bdc6b> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9035e000 - 0x90394fef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
    0x90395000 - 0x90395ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90396000 - 0x903abffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x903ac000 - 0x90baafef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x90bab000 - 0x90bf4fef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90c09000 - 0x90c90ff7  libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x90c91000 - 0x90d38feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90d39000 - 0x90dabfff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90dac000 - 0x90db3ffe  libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x9101d000 - 0x910aaff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x910ab000 - 0x910bcffe  com.apple.CFOpenDirectory 10.5 (10.5) <39d48cd00b8f9ca3fcdd251715cc74d5> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x910bd000 - 0x91150ff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91151000 - 0x91183fff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x911d3000 - 0x91357fef  com.apple.MediaToolbox 0.484.2 (484.2) <a5110a7d3bcb02c45ad8fca1f4957917> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9135b000 - 0x913d5ff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x913d6000 - 0x91556fff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91557000 - 0x91567ffc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91568000 - 0x9158cfff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x9158d000 - 0x9248cfe6  com.apple.QuickTimeComponents.component 7.6.6 (1674) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92492000 - 0x92492ff8  com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92493000 - 0x92495ff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x924ae000 - 0x924baffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x924bb000 - 0x924fbfef  com.apple.CoreMedia 0.484.2 (484.2) <37461ff47cb25ad434a8544c97271d28> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x92660000 - 0x9267eff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9267f000 - 0x92681fff  com.apple.securityhi 3.0 (30817) <547bdd9ce4e7276d9bdc137d4caf9c3f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92682000 - 0x926dfffb  libstdc++.6.dylib ??? (???) <7d389389a99ce696726cf4c8980cc505> /usr/lib/libstdc++.6.dylib
    0x926e0000 - 0x926e5fff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x926e6000 - 0x926e6ffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9271c000 - 0x928edfef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x928ee000 - 0x92948ff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92949000 - 0x9295ffff  com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92960000 - 0x92970fff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92971000 - 0x92990ffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92991000 - 0x929aeff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x929af000 - 0x929afffe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x929b0000 - 0x929eaffe  com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x929eb000 - 0x929f5feb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x929f6000 - 0x92a0efff  com.apple.openscripting 1.2.8 (???) <a6b446eb8ec7844096df5fb9002f5c7b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92a0f000 - 0x92a8cfeb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92a8d000 - 0x92ad8ff7  com.apple.CoreMediaIOServices 130.0 (935) <4ee695edd53f5aa200021a2f69d24f76> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x92ad9000 - 0x92b1afe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92b1b000 - 0x92c82ff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x92cad000 - 0x92e3cfe7  com.apple.CoreAUC 3.08.0 (3.08.0) <9043e2896f6c99d96932ff86fc5142a7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x92f07000 - 0x92f15ffd  libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x92f16000 - 0x92f54fff  libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92f55000 - 0x92f8cfff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92f8d000 - 0x92f9afe7  com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92f9b000 - 0x92fcafe3  com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92fcb000 - 0x92fcbffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x92fcc000 - 0x92fdbfff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x92fdc000 - 0x93115ff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x93116000 - 0x93134fff  libresolv.9.dylib ??? (???) <39f6d8651f3dca7a1534fa04322e6763> /usr/lib/libresolv.9.dylib
    0x93172000 - 0x931bdfe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x932a1000 - 0x932bcff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x932bd000 - 0x9330eff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9330f000 - 0x93312fff  com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93313000 - 0x933c5ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x933c6000 - 0x93415fff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x93416000 - 0x9341dfff  com.apple.agl 3.0.9 (AGL-3.0.9) <d64d715dab8565014f5e2f239fd2410c> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9341e000 - 0x93458fe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93459000 - 0x9358cfe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9358d000 - 0x93592fff  com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93593000 - 0x93673fff  libobjc.A.dylib ??? (???) <d1469bf9fe852864d4fff185c72768e8> /usr/lib/libobjc.A.dylib
    0x93674000 - 0x93755ff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x93756000 - 0x9375afff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9375b000 - 0x937acfeb  com.apple.framework.familycontrols 1.0.4 (1.0.4) <e76b4fa1c25673c8e0fb183b6c0e8eaf> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x937b9000 - 0x93902ff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93903000 - 0x93905ffd  com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93906000 - 0x93979fff  com.apple.iLifeMediaBrowser 2.1.5 (368) <3026150475335424dd1532739ded6fb0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9397a000 - 0x93ca5ff6  com.apple.QuickTime 7.6.6 (1674) <3ebc05dcaf5857bc3d33a04ebabf5c1a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x93ca6000 - 0x93d71fef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93d72000 - 0x9404cff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9404d000 - 0x94355fe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94356000 - 0x943afff7  libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x943b0000 - 0x943d8ff7  com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x943d9000 - 0x945f0ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x945f1000 - 0x945f1ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x945f2000 - 0x9498ffef  com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94990000 - 0x94a0fff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94a10000 - 0x9577efe3  com.apple.WebCore 5534 (5534.50.1) <bef6f01e56834f2498918b264f0acbf7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9577f000 - 0x9586dfef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x958dc000 - 0x958e5fff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x958e6000 - 0x95aa2ff3  com.apple.QuartzComposer 2.1 (106.13) <645bdfea218d17e8a51cc7fee78d9cd3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95aa3000 - 0x95aafff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x95ab0000 - 0x95afefe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x95aff000 - 0x95c51ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95c52000 - 0x962f2fff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x962f3000 - 0x96320feb  libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96321000 - 0x966dffea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x966e0000 - 0x96709fff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x9670a000 - 0x9670affd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x967b0000 - 0x96c81fbe  libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96c82000 - 0x96dccfeb  com.apple.QTKit 7.6.6 (1674) <ff784c2169c4214493a2b5153d80bd25> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96dcd000 - 0x96dd8fe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96dd9000 - 0x96dd9fff  com.apple.Carbon 136 (136) <8ae1cd25fd33db22d69ecbd5f5103227> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96dda000 - 0x96de0fff  com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96dfe000 - 0x96e40fef  com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96e41000 - 0x96ebefef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96ebf000 - 0x972cffef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x972d0000 - 0x9730ffef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97373000 - 0x97424fff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97425000 - 0x97431fff  libbz2.1.0.dylib ??? (???) <d355415c89c383330697a7b73d6dbc2e> /usr/lib/libbz2.1.0.dylib
    0x97432000 - 0x97498ffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x97499000 - 0x975b6ff7  com.apple.WebKit 5534 (5534.50.2) <643ffe6446c331210a74f896f0804eb2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x975b7000 - 0x975dbfeb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x975e6000 - 0x97642ff7  com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97643000 - 0x97643ffa  com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97644000 - 0x97738ff4  libiconv.2.dylib ??? (???) <96ff4c6f84c4a1623cb78287371cdd3f> /usr/lib/libiconv.2.dylib
    0x97739000 - 0x97af5ff4  com.apple.VideoToolbox 0.484.2 (484.2) <35f2d177796ebb3b61f9d06593d1787a> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x97af6000 - 0x97afdfe9  libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x97afe000 - 0x97d7afe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x97d7b000 - 0x97e63ff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97e64000 - 0x97e69fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97e6a000 - 0x97e86ff3  com.apple.CoreVideo 1.6.1 (48.6) <f1837beeefc81964abf7b58075edea2f> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97e87000 - 0x97e88ffc  libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x97e8f000 - 0x97ed3feb  com.apple.DirectoryService.PasswordServerFramework 3.0.4 (3.0.4) <45d0af6eed184b278990175527a0d3fa> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x97ed4000 - 0x97efffe7  libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x97f00000 - 0x97f00ffe  com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97f01000 - 0x97f01ff8  com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x97f02000 - 0x97f06fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x97f07000 - 0x97fceff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97fcf000 - 0x98059ff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9805a000 - 0x98115fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98116000 - 0x9811afff  com.apple.OpenDirectory 10.5 (10.5) <7d9ff71c60ad73f4c82a638abc233bf0> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0xba900000 - 0xba916fff  libJapaneseConverter.dylib ??? (???) <b9aea83b1cd97f3230999ebfcbf63e7c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2  libKoreanConverter.dylib ??? (???) <bc0bb2eed0f4558f07bbaa812d79371b> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Hi.
    I tried logging in as a different user in the OS and that didn't work.
    Do you mean that Safari crashed there as well?
    If so, that's an indication that the startup disk needs repairing.
    Using Disk Utility to verify or repair disks

  • Safari (and FF) crashes constanly when visiting specific web sites

    Hi guys,
    as of couple of hours ago I'm having huge problems with almost any sort of web browsing I am trying to do. But let's start this story at the start...
    Few days ago I finally got a chance to get to my external hard drive and make a backup of my data so that I could upgrade to 10.5.6. After doing the backup I upgraded and I thought that there were no problems.
    But then first problems started to appear with Firefox which I occasionally use (primary browser safari) - all of a sudden it started crashing, as far as my initial debugging went that was usually (but not exclusively) when visiting sites with https connection - first problem I actually noticed on mozzillas own add-on page and for a couple of days thought that maybe it is Firefoxs problem since everything else seemed to work just fine.
    Now this morning my safari crashes - I wasn't shocked as I had about 40 windows opened and about 200 tabs in those windows so although it worked just fine before that I wasn't particularly worried and tried (with no luck, bummer) restoring the session. Soon I realized that crashes are so frequent and severe that browser became unusable - I couldn't restore a session, on a particular page it crashes immediately after I start to scroll, but if I browse onto subsections of the page I may use the web site without problems for some time.
    Anyway, after googling and thinking that maybe I have problems because of an update and some kind of strange incompatibility between one of the plugins and safari I removed everything from /Library/Internet Plugins and /Library/InputManagers but that still didn't resolve the problem so although I stared at the output that safari gives at crahes for some time I have no idea what is causing this problem.
    Already tried verifying disk (everything seems ok), but I can't run any hardware tests (personally I am suspecting RAM, although games run with no problems and only FF and safari crashed) until tomorrow since I don't have my install DVD with me. If anyone can give a suggestion before then I would deeply appreciate it.
    Maybe also relevent but no idea how - when I press report after crash my mac makes the same sound as if I would just wake it up from sleep. Go figure why. :>
    As said, any help deeply appreciated.
    Detailed specifications and error report below:
    Model: MacBookPro3,1, BootROM MBP31.0070.B07, 2 processors, Intel Core 2 Duo, 2.2 GHz, 4 GB
    Graphics: GeForce 8600M GT, GeForce 8600M GT, spdisplayspciedevice, 128 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 2 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x87), 1.4.8.0
    Bluetooth: Version 2.1.3f8, 2 service, 0 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Parallels Host-Guest, Ethernet, en2
    Network Service: Parallels NAT, Ethernet, en3
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: FUJITSU MHW2120BH, 111.79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857E
    USB Device: Built-in iSight, (null) mA
    USB Device: USB Receiver, (null) mA
    USB Device: Bluetooth USB Host Controller, (null) mA
    USB Device: Apple Internal Keyboard / Trackpad, (null) mA
    USB Device: IR Receiver, (null) mA
    Process: Safari [3810]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.2.1 (5525.27.1)
    Build Info: WebBrowser-55252701~1
    Code Type: X86 (Native)
    Parent Process: launchd [180]
    Date/Time: 2009-01-04 02:42:55.490 +0100
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000000ebf0b00
    Crashed Thread: 0
    Thread 0 Crashed:
    0 ...ple.ApplicationServices.ATS 0x96100774 _eATSFontGetGlyphIDsForGlyphNames + 5564
    1 ...ple.ApplicationServices.ATS 0x960ff19e ATSFontGetGlyphIDsForGlyphNames + 83
    2 libCGATS.A.dylib 0x970e01ce atsfont_get_glyphs_for_glyphnames + 48
    3 libCGATS.A.dylib 0x970e20bf getglyphs_for_glyphnames + 74
    4 com.apple.CoreGraphics 0x9660f1c3 CGFontGetGlyphForGlyphName + 39
    5 com.apple.CoreGraphics 0x9660f143 getchartop + 22
    6 com.apple.CoreGraphics 0x9660e80e CGFontGetAutohintTransform + 557
    7 com.apple.CoreGraphics 0x966334c0 CGFontCreateGlyphBitmaps32 + 441
    8 com.apple.CoreGraphics 0x9660e3dc CGFontCreateGlyphBitmaps + 208
    9 com.apple.CoreGraphics 0x9660e1f2 createmissingbitmaps + 468
    10 com.apple.CoreGraphics 0x9660d55c CGGlyphLockLockGlyphBitmaps + 352
    11 libRIP.A.dylib 0x92b9c536 ripc_DrawGlyphs + 1530
    12 com.apple.CoreGraphics 0x96960ae1 draw_glyphs + 732
    13 com.apple.CoreGraphics 0x9660adfb CGContextShowGlyphsWithAdvances + 660
    14 com.apple.WebCore 0x9462dce8 WebCore::Font::drawGlyphs(WebCore::GraphicsContext*, WebCore::SimpleFontData const*, WebCore::GlyphBuffer const&, int, int, WebCore::FloatPoint const&) const + 472
    15 com.apple.WebCore 0x9462da85 WebCore::Font::drawGlyphBuffer(WebCore::GraphicsContext*, WebCore::GlyphBuffer const&, WebCore::TextRun const&, WebCore::FloatPoint const&) const + 245
    16 com.apple.WebCore 0x9462d868 WebCore::Font::drawSimpleText(WebCore::GraphicsContext*, WebCore::TextRun const&, WebCore::FloatPoint const&, int, int) const + 664
    17 com.apple.WebCore 0x9462d48a WebCore::GraphicsContext::drawText(WebCore::TextRun const&, WebCore::IntPoint const&, int, int) + 90
    18 com.apple.WebCore 0x9462c7e9 WebCore::InlineTextBox::paint(WebCore::RenderObject::PaintInfo&, int, int) + 1273
    19 com.apple.WebCore 0x944d9dea WebCore::InlineFlowBox::paint(WebCore::RenderObject::PaintInfo&, int, int) + 394
    20 com.apple.WebCore 0x944d9dea WebCore::InlineFlowBox::paint(WebCore::RenderObject::PaintInfo&, int, int) + 394
    21 com.apple.WebCore 0x944d9bb5 WebCore::RootInlineBox::paint(WebCore::RenderObject::PaintInfo&, int, int) + 53
    22 com.apple.WebCore 0x944d8b93 WebCore::RenderFlow::paintLines(WebCore::RenderObject::PaintInfo&, int, int) + 851
    23 com.apple.WebCore 0x944d3d4d WebCore::RenderBlock::paintObject(WebCore::RenderObject::PaintInfo&, int, int) + 525
    24 com.apple.WebCore 0x944d594c WebCore::RenderBlock::paint(WebCore::RenderObject::PaintInfo&, int, int) + 108
    25 com.apple.WebCore 0x944d4a70 WebCore::RenderBlock::paintChildren(WebCore::RenderObject::PaintInfo&, int, int) + 688
    26 com.apple.WebCore 0x944d3d4d WebCore::RenderBlock::paintObject(WebCore::RenderObject::PaintInfo&, int, int) + 525
    27 com.apple.WebCore 0x944d594c WebCore::RenderBlock::paint(WebCore::RenderObject::PaintInfo&, int, int) + 108
    28 com.apple.WebCore 0x944d4a70 WebCore::RenderBlock::paintChildren(WebCore::RenderObject::PaintInfo&, int, int) + 688
    29 com.apple.WebCore 0x944d3d4d WebCore::RenderBlock::paintObject(WebCore::RenderObject::PaintInfo&, int, int) + 525
    30 com.apple.WebCore 0x944d594c WebCore::RenderBlock::paint(WebCore::RenderObject::PaintInfo&, int, int) + 108
    31 com.apple.WebCore 0x944d274e WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, bool, WebCore::PaintRestriction, WebCore::RenderObject*) + 2462
    32 com.apple.WebCore 0x944d2644 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, bool, WebCore::PaintRestriction, WebCore::RenderObject*) + 2196
    33 com.apple.WebCore 0x944d2644 WebCore::RenderLayer::paintLayer(WebCore::RenderLayer*, WebCore::GraphicsContext*, WebCore::IntRect const&, bool, WebCore::PaintRestriction, WebCore::RenderObject*) + 2196
    34 com.apple.WebCore 0x944d1da9 WebCore::RenderLayer::paint(WebCore::GraphicsContext*, WebCore::IntRect const&, WebCore::PaintRestriction, WebCore::RenderObject*) + 57
    35 com.apple.WebCore 0x944d1b8d WebCore::Frame::paint(WebCore::GraphicsContext*, WebCore::IntRect const&) + 173
    36 com.apple.WebCore 0x944d177d -[WebCoreFrameBridge drawRect:] + 141
    37 com.apple.WebKit 0x938f088c -[WebHTMLView drawSingleRect:] + 412
    38 com.apple.WebKit 0x938f06ad -[WebHTMLView drawRect:] + 381
    39 com.apple.AppKit 0x921c929c -[NSView _drawRect:clip:] + 3853
    40 com.apple.AppKit 0x921c6b0d -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1819
    41 com.apple.WebKit 0x93914eae -[WebHTMLView(WebPrivate) _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 286
    42 com.apple.AppKit 0x921c7543 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4433
    43 com.apple.AppKit 0x921c2b4f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    44 com.apple.AppKit 0x92103523 -[NSView displayIfNeeded] + 933
    45 com.apple.AppKit 0x9224f5c5 -[NSClipView _immediateScrollToPoint:] + 3985
    46 com.apple.AppKit 0x9224e59e -[NSClipView scrollToPoint:] + 248
    47 com.apple.AppKit 0x922bb717 -[NSScrollView scrollClipView:toPoint:] + 364
    48 com.apple.AppKit 0x921e8b8a -[NSClipView _scrollTo:animate:] + 1095
    49 com.apple.AppKit 0x922e5b26 -[NSScrollView _doScroller:hitPart:multiplier:] + 989
    50 com.apple.AppKit 0x9237af37 -[NSScrollView scrollWheel:] + 424
    51 com.apple.WebKit 0x93903d40 -[WebDynamicScrollBarsView scrollWheel:] + 144
    52 com.apple.AppKit 0x9225b8ff forwardMethod + 113
    53 com.apple.AppKit 0x9237ad76 -[NSView scrollWheel:] + 271
    54 com.apple.WebKit 0x93903c78 -[WebClipView scrollWheel:] + 184
    55 com.apple.AppKit 0x9225b8ff forwardMethod + 113
    56 com.apple.AppKit 0x9237ad76 -[NSView scrollWheel:] + 271
    57 com.apple.WebKit 0x93903ae8 -[WebHTMLView scrollWheel:] + 136
    58 com.apple.AppKit 0x921cfddd -[NSWindow sendEvent:] + 8511
    59 com.apple.Safari 0x0002b0d3 0x1000 + 172243
    60 com.apple.AppKit 0x9219bd49 -[NSApplication sendEvent:] + 2941
    61 com.apple.Safari 0x0002ab58 0x1000 + 170840
    62 com.apple.AppKit 0x920f969f -[NSApplication run] + 847
    63 com.apple.AppKit 0x920c68a4 NSApplicationMain + 574
    64 com.apple.Safari 0x000b9b16 0x1000 + 756502
    Thread 1:
    0 libSystem.B.dylib 0x939af3ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x939d9d0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x9440e8ff WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x943c7065 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x939d9095 pthreadstart + 321
    5 libSystem.B.dylib 0x939d8f52 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x939a81c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x939af9bc mach_msg + 72
    2 com.apple.CoreFoundation 0x919d00ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x919d0cd8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x94fb9052 CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x939d9095 pthreadstart + 321
    6 libSystem.B.dylib 0x939d8f52 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x939a81c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x939af9bc mach_msg + 72
    2 com.apple.CoreFoundation 0x919d00ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x919d0cd8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x94a83d40 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x94a207ed -[NSThread main] + 45
    6 com.apple.Foundation 0x94a20394 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x939d9095 pthreadstart + 321
    8 libSystem.B.dylib 0x939d8f52 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x939f76f2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x939d9095 pthreadstart + 321
    2 libSystem.B.dylib 0x939d8f52 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x000038e3 ebx: 0x960ff1cf ecx: 0x0000006f edx: 0x0ebe2774
    edi: 0x00000328 esi: 0x0000031b ebp: 0xbfff0f08 esp: 0xbfff0d60
    ss: 0x0000001f efl: 0x00010217 eip: 0x96100774 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x0ebf0b00
    Binary Images:
    0x1000 - 0x1d7fe2 com.apple.Safari 3.2.1 (5525.27.1) <66278f41bc085c64e0f06ff487af4adc> /Applications/Safari.app/Contents/MacOS/Safari
    0x223000 - 0x232ff8 SyndicationUI ??? (???) <edde0133829971dbd8a0f3473cdb85fc> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x500000 - 0x6f6fff com.apple.RawCamera.bundle 2.0.12 (421) <02fe3f4ea6251f7b2d23d855ce5c5fd2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1d10000 - 0x1d15ff3 libCGXCoreImage.A.dylib ??? (???) <375e0cdb64b043378dbf637992bbfeb0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x90003000 - 0x90082ff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90083000 - 0x90086fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90087000 - 0x90096fff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x90097000 - 0x900c6fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x900c7000 - 0x90153ff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90154000 - 0x901defe3 com.apple.DesktopServices 1.4.7 (1.4.7) <d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x901df000 - 0x901efffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x901f0000 - 0x90227fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90228000 - 0x90502ff3 com.apple.CoreServices.CarbonCore 786.10 (786.10) <ec35bb05f67fe0e828d49dda88bbf6d7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905ea000 - 0x905ecfff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x905ed000 - 0x905f1fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x905f2000 - 0x9060afff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9060b000 - 0x906f0ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x906f1000 - 0x907a1fff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x907a2000 - 0x90883ff7 libxml2.2.dylib ??? (???) <d69560099d9eb32ba7f8a17baa65a28d> /usr/lib/libxml2.2.dylib
    0x91950000 - 0x9195cff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9195d000 - 0x91a90fff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91a91000 - 0x91aebff7 com.apple.CoreText 2.0.3 (???) <1f1a97273753e6cfea86c810d6277680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x91aec000 - 0x91fbdf3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91fbe000 - 0x91fcaffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x920c0000 - 0x928befef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9296e000 - 0x929ebfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x929ec000 - 0x92a10feb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x92a11000 - 0x92ac3ffb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x92ac4000 - 0x92acafff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92aed000 - 0x92b0bff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <f8931f64103c8a86b82e9714352f4323> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92b0c000 - 0x92b22fe7 com.apple.CoreVideo 1.5.1 (1.5.1) <001910004257f1386724398f584b30b5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92b55000 - 0x92b8effe com.apple.securityfoundation 3.0 (32989) <e9171eda22c69c884a04a001aeb526e0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92b8f000 - 0x92b8fff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92b90000 - 0x92bd1fe7 libRIP.A.dylib ??? (???) <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92bd2000 - 0x92edafff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92edb000 - 0x92ee6fe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92ee7000 - 0x92f21fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92f22000 - 0x93332fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93333000 - 0x93333fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93496000 - 0x93576fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x93577000 - 0x93642fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93643000 - 0x93643ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93644000 - 0x93668fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x9369c000 - 0x93727fff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93728000 - 0x93781ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93782000 - 0x938c8ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x938c9000 - 0x938d7ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x938d8000 - 0x938d8ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x938d9000 - 0x93997fff com.apple.WebKit 5525.27 (5525.27.1) <a15e548666c9a463d61be1f114b2fa27> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9399d000 - 0x9399effc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x9399f000 - 0x939a6ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x939a7000 - 0x93b0eff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x93b0f000 - 0x93b89ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93b8a000 - 0x93bb5fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x93bb6000 - 0x93bcbffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93be4000 - 0x93c23fef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93c24000 - 0x93df2ff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93fb0000 - 0x93fcfffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94021000 - 0x9409efeb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9409f000 - 0x940c7fff libcups.2.dylib ??? (???) <81abd305142ad1b771024eb4a1309e2e> /usr/lib/libcups.2.dylib
    0x941c2000 - 0x941d1ffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <eac1c7b7c07ed3148c85934b6f656308> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x941d2000 - 0x94210ff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94246000 - 0x9430dff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9430e000 - 0x943b5feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x943b6000 - 0x943c3fe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x943c4000 - 0x94a15fff com.apple.WebCore 5525.26 (5525.26.6) <8676962ab93f003cf9b10748725c1bc2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x94a16000 - 0x94c91fe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94dcb000 - 0x94f1dff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94f1e000 - 0x94f20ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94f21000 - 0x94f21ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94f22000 - 0x94fb5fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94fb6000 - 0x95053ffc com.apple.CFNetwork 422.11 (422.11) <2780dfc3d2186195fccb3634bfb0944b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95054000 - 0x95054ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95055000 - 0x95055ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95056000 - 0x9505bfff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x950ab000 - 0x950d8feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x950d9000 - 0x95122fef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95123000 - 0x951aaff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x951ab000 - 0x95265fe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x952b7000 - 0x952dfff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x952e0000 - 0x953e1fef com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x953e2000 - 0x953e2ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x953e3000 - 0x95434ff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x954a8000 - 0x95627fff com.apple.AddressBook.framework 4.1.1 (699) <60ddae72a1df8ddbc5c53df92f372b76> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95668000 - 0x95736ff3 com.apple.JavaScriptCore 5525.26 (5525.26.2) <69e219e81bc886a94c4d4b310d393ab9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95737000 - 0x95769fff com.apple.LDAPFramework 1.4.5 (110) <cc04500cf7b6edccc75bb3fe2973f72c> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95770000 - 0x958a8ff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x958a9000 - 0x958b2fff 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
    0x958b3000 - 0x958c9fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x958e8000 - 0x95932fe1 com.apple.securityinterface 3.0.1 (35183) <f855cb06d2541ce544d9bcdf998b991c> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95933000 - 0x95969fef libtidy.A.dylib ??? (???) <f1d1742e06280444baa5637b209fd0af> /usr/lib/libtidy.A.dylib
    0x95c6a000 - 0x95cc6ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95d35000 - 0x95d53fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x95d99000 - 0x95db4ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95db5000 - 0x95dbffeb 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
    0x95dc3000 - 0x95dc7fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x95dc9000 - 0x95dcbfff com.apple.CrashReporterSupport 10.5.5 (159) <4ca9b6643fcbafd76424a46d162363eb> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x960ef000 - 0x96182ff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96183000 - 0x96541fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9654f000 - 0x9655ffff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96560000 - 0x96568fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x96569000 - 0x965cfffb com.apple.ISSupport 1.7 (38.2) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x965d0000 - 0x96c70fff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96c83000 - 0x96cc5fef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96cc6000 - 0x96d23ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x96d2e000 - 0x96d33fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96d34000 - 0x96d3bfe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x96d3c000 - 0x970d9fef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x970da000 - 0x970daffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x970db000 - 0x970e2ff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    Message was edited by: Neo--

    Bee wrote:
    Looking back at your crashed thread, there are a whole bunch of ATS and font references.
    Did you by any chance load on a bunch of fonts, or delete any lately?
    Maybe you installed Word or some other app that comes with a lot of fonts?
    Yep, installing some fonts which were already installed was the cause of the issue. After removing them the problem seems to go away.
    iBod wrote:
    Hi Neo~~,
    As ~Bee says it's as much about hanging around here getting a feel for things and learning from others that help us diagnose the crash reports. In a former life I was a software developer (not Apple stuff) so that helps give me ideas what might be going on.
    There is [this article|http://developer.apple.com/technotes/tn2004/tn2123.html] over at Apple's Developer area that is a bit of a dry read but it gives you some idea what all the different parts of the crash report mean.
    Thanks for the article, it may prove useful. Personally I'm more into web dev and only recently started to look into desktop software so those thread warning did look a bit scary at the start. Will try to work on that. :>

  • Changed a setting and iTunes crashes at startup

    iTunes has been running trouble free for months on my pc running Windows 7 Pro, until today.  Earlier today, I went into iTunes preferences, playback, and clicked the box to turn on volume leveling.  Then, as soon as I clicked on ok, iTunes crashed, and it crashes every time within a second or two of opening.  The top, center of the iTunes window reads "Determining Audio Volume" and "Analyzing 1 of 440: Hold Me Tight"  The Problem Details in the "iTunes has stopped working" window are: 
    Problem signature:
      Problem Event Name: APPCRASH
      Application Name: iTunes.exe
      Application Version: 11.3.1.2
      Application Timestamp: 53dc1f90
      Fault Module Name: StackHash_c737
      Fault Module Version: 6.1.7601.18247
      Fault Module Timestamp: 521ea8e7
      Exception Code: c0000374
      Exception Offset: 000ce753
      OS Version: 6.1.7601.2.1.0.256.48
      Locale ID: 1033
      Additional Information 1: c737
      Additional Information 2: c737828177378f8767a914c2b0624a6a
      Additional Information 3: 41a3
      Additional Information 4: 41a332a5019beb35abb090facfe8c4b5
    I don't know what to do to get iTunes to stop crashing.  I have uninstalled iTunes, downloaded and installed iTunes.  I've tried opening iTunes in safe mode (control and shift).  I've tried opening iTunes with the Alt key pressed.  I've tried moving my iTunes music folder to a different directory in order to 'hide' it from iTunes.  None of these things changed the crashing.
    I'm hoping someone will reply with a fix for this.  Thanks.

    Hello jsolo53,
    Thanks for using Apple Support Communities.
    Even though you have already reinstalled iTunes, I'd like you to completely uninstall the application and its supporting files by following the steps in the article below, and then do a reinstall.
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Take care,
    Alex H.

  • HELP! My old mac was requested to upgrade Firefox to 14.0.1. After the sucessfully installation, I received a message saying my old Mac couldn't use the new Firefox and Safari crashes. I have NO browser now!!!

    My old mac was requested to upgrade Firefox to 14.0.1. After the sucessfully installation, I received a message saying my old Mac couldn't use the new Firefox and Safari crashes. I have NO browser now! Any help would be appreciated.

    Hmmm...  So you upgraded Firefox and now neither Firefox or Safari will work?  Very weird.  I have no idea what might have gone wrong.  That said, when things start acting wierd, I always try a bit of maintenance first.  About 95% of the time, I luck out and it works.
    I use the free program Onyx.  I run all the clean up routines.  Then I boot to the recovery partition (Lion) or the OS X Install Disc and repair permissions and verify/repair the hard disk.
    Hope this helps.

Maybe you are looking for