NullPointerException when opening report on Linux ( Windows works ok )

Our project is designed for Windows and Linux platform thus we need to generate Reports on both of this systems. However we noticed that behaviour of these libraries differes, depending on system they are used on. The same code on the Windows platform opens given report and prints it on expected devices. On Linux platform we are getting following exception:
Exception in thread "Crystal" java.lang.NullPointerException
      at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.do(Unknown Source)
      at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)
      at com.crystaldecisions.sdk.occa.report.application.ClientDocument.for(Unknown Source)
      at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.for(Unknown Source)
      at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
      at com.ppl.outputservice.crystalplugin.JobTemplate.openReport(JobTemplate.java:306)
      at com.ppl.outputservice.crystalplugin.JobManager.openJob(JobManager.java:120)
      at com.ppl.outputservice.crystalplugin.JobManager.performJob(JobManager.java:130)
      at CrystalPlugin.setParameter(CrystalPlugin.java:102)
      at com.ppl.outputservice.plugin.CrystalJavaPlugin.sendCommand(CrystalJavaPlugin.java:746)
      at com.ppl.outputservice.plugin.CrystalJavaPlugin.run(CrystalJavaPlugin.java:609)
      at java.lang.Thread.run(Thread.java:619) 
The same happens with reports created with Crystal Reports 11 and Crystal Reports 2008.
Unfortunatelly we have no possibility to check what makes the code to fail it's execution
The second thing is that reports are not printed on the Linux OS ( Fedora6 ) . We are getting empty pages.
The same happens with CupsPDF and real Laser Jet printer.

In my 12.2.202.566, there's no such method as:
com.crystaldecisions.sdk.occa.report.application.ReportAppSession.do
that you have listed in your stack trace.
Do you happen to have a rasapp.jar file in your build?  That's not part of Crystal Reports for Eclipse 2.0.
I first recommend removing all jars, and copying in fresh.  You're having what I think is a bad mix of jar files.
Sincerely,
Ted Ueda

Similar Messages

  • NullPointerException when opening report on Windows.

    We have to develop report by use crystal report on window and run by Eclipse 3.2 and use java 6.0
    By set font is 'Code 39' then when we run program form Eclipse.
    It show java.lang.NullPointerException. I don't know that what does it occur from problem?

    I don't know that what line which occur this exception. Then I copy all code to you. Please help me.
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <jsp:useBean id="viewBean"
         class="th.co.snp.factoryorder.view.form.PrintOutOrdSheetForm"
         scope="request" />
    <%@page import="com.crystaldecisions.reports.sdk.ReportClientDocument"%>
    <%@page import="com.crystaldecisions.sdk.occa.report.exportoptions.*"%>
    <%@page import="com.crystaldecisions.report.web.viewer.*"%>
    <%@page import="java.sql.*"%>
    <%@page import="th.co.palsys.common.util.DBConn"%>
    <%@page import="th.co.snp.common.util.Constant"%>
    <%
          /* Applies to Versions:     XI
    Date Created: February 2005
    Description: This sample demonstrates how to pass a Java Resultset to a report as a datasource at runtime using the 
                (JRC) SDK.
    Author: CW
         ReportClientDocument reportClientDocument = new ReportClientDocument();
         DBConn db = new DBConn();
         java.sql.Connection conn = null;
         Statement st = null;
         Statement st2 = null;
         Statement st3 = null;
         try {
              //SQL query that can be used can be obtained by first creating a report directly off the desired datasource, and then
              //in Crystal Reports, open the 'Database' > 'Show SQL Query' to see the SQL generated for the report. 
              String query1 = "My query1"; // I remove query becuase more line.
              String query2 = "My query2"; // I remove query becuase more line.
              String query3 = "My query3"; // I remove query becuase more line
              conn = db.getConnection();
              //Call simple utility function that obtains Java Result set that will be
              //pushed into the report. 
              st = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
              ResultSet.CONCUR_READ_ONLY);
              ResultSet resultSet = st.executeQuery(query1);
              st2 = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
              ResultSet.CONCUR_READ_ONLY);
              ResultSet resultSet2 = st2.executeQuery(query2);
              st3 = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
              ResultSet.CONCUR_READ_ONLY);
              ResultSet resultSet3 = st3.executeQuery(query3);
              if (!resultSet.next()) {
                   conn.close();
                   response.sendRedirect("message.html");
              resultSet.beforeFirst();
              reportClientDocument.open("CR/ConditioningOrderSheet.rpt", 0);
              String tableName = reportClientDocument.getDatabaseController()
              .getDatabase().getTables().getTable(0).getName();
              String SubReport = reportClientDocument
              .getSubreportController().getSubreport("SubFATRep06")
              .getDatabaseController().getDatabase().getTables()
              .getTable(0).getName();
              String SubReport2 = reportClientDocument
              .getSubreportController().getSubreport("SubFATRep06_2")
              .getDatabaseController().getDatabase().getTables()
              .getTable(0).getName();
              //Push the Java Resultset into the report.  This will then become the datasource of the report when the report itself
              //is generated.
              //reportClientDocument.getDatabaseController().setDataSource(resultSet, tableName , "resultTbl");
              reportClientDocument.getDatabaseController().setDataSource(
              resultSet, tableName, tableName);
              reportClientDocument.getSubreportController().getSubreport(
              "SubFATRep06").getDatabaseController().setDataSource(
              resultSet2, SubReport, SubReport);
              reportClientDocument.getSubreportController().getSubreport(
              "SubFATRep06_2").getDatabaseController().setDataSource(
              resultSet3, SubReport2, SubReport2);
              //Cache the report source of the ReportClientDocument in session.
              session.setAttribute("reportSource", reportClientDocument
              .getReportSource());
              ExportOptions oExportOptions = new ExportOptions();
              oExportOptions.setExportFormatType(ReportExportFormat.PDF);
              ReportExportControl oReportExportControl = new ReportExportControl();
              oReportExportControl.setReportSource(reportClientDocument.getReportSource());
              //Pass the report source to the ReportExportControl and set the ExportOptions
              oReportExportControl.setExportOptions(oExportOptions);
              //ExportAsAtttachment(true) prompts for open or save; false opens the report
              //  in the speficied format after exporting.
              oReportExportControl.setExportAsAttachment(true);
              //Export the report
              oReportExportControl.processHttpRequest(request, response,getServletConfig().getServletContext(), null);
              oReportExportControl.dispose();
         } catch (Exception e) {
              out.println(e);
         } finally {
              try {
                   if (conn != null) {
              conn.close();
              } catch (SQLException e1) {
    %>
    PS. If I don't set font 'code39' on field in crystal report . It can open report form this sourcecode.

  • Error when opening itunes : iTunes has stopped working ''A problem caused the program to stop working correctly''. When I repaired damaged files the problem still exists and also after uninstalling and redownloading and installing itunes. I have windows 8

    Error when opening iTunes : iTunes has stopped working '' A problem caused the program to stop working correctly''.
    When I repaired damaged files the problem still exists and also after uninstalling, redownloading and reinstalling iTunes.
    My pc is working with windos 8.
    Is there a solution?

    Hey there Rodney274,
    It sounds like you are getting an error from iTunes when you launch it. I would try the troubleshooting in this article named:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Start with troubleshooting for 3rd party plug ins section, then the rest of the article if needed:
    Start iTunes in Safe Mode
    Open iTunes in Safe Mode to isolate any interference from plug-ins or scripts not manufactured by Apple.
    Hold down Shift–Control while opening iTunes. You should see a dialog that says "iTunes is running in safe mode" before iTunes finishes starting up.
    Click Continue.
    See if the issue you're experiencing persists in Safe Mode.
    If you have the same issue while iTunes is in Safe Mode, proceed to the "Create a new user account" section. If you don't experience the same issue, follow these steps to remove third-party plug-ins.
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Stop Oracle Apllication -  when installing Reports 6i on Windows XP

    Hi everybody
    I Have Windows XP
    I Have database 9i
    I have Forms 6i
    I have a problem when installing Reports 6i on Windows Xp
    Message appeared and said :-
    Title :Stop Oracle Applications
    Message :You Must stop all Oracle Services and Applications using Net8 for the Net8 installation to be successful
    Press Ok to continue the installation once the services and applications have been stopped, or press Cancel to abort the installation.
    --- End of message
    I stoped all services and pressed Ok but the message never stop asking me until I pressed Cancel .
    Can anyone help me to install the Reports 6i

    Try this, it may help...
    1. Shut down the DB, and make sure it won't automatically restart.
    2. Right click on my computer, go to manage.
    3. in manage, expand the services 'menu' (on right window).
    4. Press on services. That should bring up a list of all the services, running or
    not. Scroll down till you find the Oracle services, Highlight them and press stop.
    (You can also check the services from HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services)
    Run regedit (Start > Run > Enter "regedit", click "Ok"), find and check the following keys:
    HKEY_LOCAL_MACHINE
    \SOFTWARE
    \ORACLE
    HKEY_LOCAL_MACHINE
    \SYSTEM
    \CurrentControlSet
    \Services
    \EventLog
    \Application
    \Oracle.oracle
    Also check in HKEY_CURRENT_USER\SOFTWARE\ORACLE
    5. If that doesn't work, then try to find a different solution
    Uninstall Oracle and then Re-install
    Hassan

  • Get volumes displayed by default under Home when opening File Explorer in Windows 10 Technical Preview

    Scenario:
    In Windows 8.1, it is to display volumes under This PC by default when opening File Explorer, which is as shown in Figure1. However, in Windows 10 Technical Preview, it is not to display volumes under Home by default when
    opening File Explorer, which is as shown as in Figure 2. This articles describes a workaround to get volumes displayed by default under
    Home when opening File Explorer in Windows 10 Technical Preview.
    Workaround:
    This workaround is to edit some related Registry keys. Note: Please click
    Yes in the User Account Control prompt to continue. What’s more, before you make changes to a registry key or subkey, we recommend that you export, or make a backup copy, of the key or subkey. In this scenario, please backup the key
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer.
    Click Windows icon and type Folder option in Search box, and click
    Folder option to open it.
    Under View tab, clear the checkbox Hidden extensions for known file types
    in Advanced settings.
    Create a Text Document, copy the following lines into it, rename it as
    Fix.reg. Double click the file fix.reg and click Yes to run this file
    Windows Registry Editor Version 5.00
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{374DE290-123F-4565-9164-39C4925E467B}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{3ADD1653-EB32-4cb0-BBD7-DFA0ABB5ACCA}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A0953C92-50DC-43bf-BE83-3742FED03C9C}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}]
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}]
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HomeFolder\NameSpace\DelegateFolders\{20D04FE0-3AEA-1069-A2D8-08002B30309D}]
    @="This PC"
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HomeFolder\NameSpace\DelegateFolders\{d34a6ca6-62c2-4c34-8a7c-14709c1ad938}]
    @="Favorites Folder"
    Open File Explorer again, and the new view is shown as the below picture:
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    i think what he want is to change the Win + E shortcut to This PC.
    I understand that is the goal. I've tried the registry hack, it works, but I found it left fragments of other files from "Home' scatter around in there too. We all been using this new version of windows for a few weeks now, built up a list of stuff
    we have looked at, and that is why I said it's not the prettiest solution. It might have been okay if it was done just after a fresh install. In my alternative solution, you are bringing the This PC icon out to a more accessible place so you
    don't have to use the File Explorer icon to get at the volumes i.e. hard drive view.
    Personally, when I launch the File Explorer, I am expecting to be looking for something straight away on my hard drives and not be presented with a list of stuff that I have already looked at. That kind of thing should be left
    in a Recent Folder sort of thing we use to see in the older versions of windows.

  • Bug Found: Illustrator CC *always* merges layers when opening a DXF file - CS6 works properly

    Bug Found: Illustrator CC *always* merges layers when opening a DXF file - CS6 works properly.  When opening a DXF, CC merges multiple layers into one, even if you have the "Merge Layers" unchecked.  Can a forum admin employee get this submitted as a bug report?  Thanks.

    Thank you Larry.  I just submitted this bug report pasted below at the link you provided.
    ******BUG******
    Illustrator CC 17.0.0 *always* merges layers when opening a DXF file, even if you have the "Merge Layers" unchecked.
    1. Open a DXF file that contain multiple layers in Illustrator CC 17.0.0
    2. Uncheck the "Merge Layers" button. 
    3. Click OK.
    Results:  It has merge all the layers into one layer.
    Expected results: It should open with multiple layers preserved.  Illustrator CS6 works properly.

  • My 3 year-old macbook pro is very slow. I have run disk utility and virus scan with no improvement. The "beach ball" will spin for minutes at a time when opening, closing or changing windows. Apple Store looked at it a few months ago with no help.

    my 3 year-old macbook pro is very slow. I have run disk utility and virus scan with no improvement. The "beach ball" will spin for minutes at a time when opening, closing or changing windows. Apple Store looked at it a few months ago with no help. What can I do?

    Under CPU: 3.5% user; 5% system; 91% idle; 441 threads; 90 processes.
    Under System: out of 2GB - 54.7MB free; 530MB wired; 603MB active; 862MB inactive; 1.95GB used.
    Is too much of the system memory tied up? If so, what can I do to free some up?

  • Error When Opening the Transactions/Transactions Window

    Hi All,
    in Oracle E-Business Suite R12 Version
    Error When Opening the Transactions/Transactions Window
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "APPS.AR_MO_GLOBAL_CACHE", line 55
    ORA-06512: at "APPS.ARP_STANDARD", line 2912
    ORA-06512: at "APPS.ARP_GLOBAL", line 282
    FRM-40735: PRE-FORM trigger raised unhandled exception ORA-06502
    Can any body help about the error
    Thanks in advance.

    Did you go through the below notes:
    Note:125204.1, Note:153207.1 and Note:191306.1.

  • Photoshop Elements 12,  When opening Editor --  "Editor has stopped working"  Any solutions?

    Just purchased Photoshop Elements 12,  When opening Editor --  "Editor has stopped working"  Any solutions?

    i have same problem too i do all instructions that says before, make new ADMIN then reinstall ps element 12 then it works but few days later stops again

  • Transfer_State (open report in new window) with a PreQuery

    Hi
    As part of the standard template that we deliver to end users, one of the buttons in the toolbar is a button that allows the user to open the report in a new window. This means they can view the report without all the additional information that portal adds, which is quite useful for large reports.
    However, what I have found is one of our templates is not opening correctly, as the variable selection screen appears when the report is transferred to the new window (using TRANSFER_STATE command). For all the other templates, the filter values are remembered, so whatever values were entered on the selection screen, and whatever navigation was performed is transferred to the new window.
    The only difference I can see between the templates that work and the one that doesn't, is that the "error" one has a query which in turn has a pre-query.
    Is this a SAP bug, or standard behaviour, or something that we can get around?
    Cheers,
    Andrew

    Hi Andrew,
    We too had this issue when using transfer state.  All filter values where we used an exit would reset.  SAP said this was standard behaviour.  We ended up having to re-design and create all out templates!
    Cheers,
    Nick.

  • JSF app - open report in new Window - via JSP?

    I have been reading through this forum but no one has done quite what I am trying so I thought I'd post my own version of this problem.
    The web app I'm working on is basically a report generator. Data is formatted via XSLT to .html files - that part works great. The problem is getting the app to open this new HTML file in a new window. I want to get this working with little or no JavaScript.
    startReport.jsp (a JSF file) is the form that validates the user input. The sole h:commandButton (I do NOT want a link) works fine sending the form and JSF returns its errors or mine (if the criteria results in nothing) as it should; the action method returns "failure" so the page stays the same.
    But when the action method returns "success" the JSF navigation-rule is setup to route to showReportFile.jsp (which is NOT a JSF file). This JSP is very simple:
    <%@ page import="java.io.File" %>
    <%@ page import="java.io.PrintWriter" %>
    <%@ page import="java.io.FileReader" %>
    <%@ page import="com.logipath.gict.cts.reporting.client.ReportClient" %>
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" %>
    <jsp:useBean id="reportClient" scope="session" class="com.logipath.gict.cts.reporting.client.ReportClient" />
    <%
    String fileName = reportClient.getReportOutputFile();
    PrintWriter writer = response.getWriter();
    char[] buffer = new char[1024];
    FileReader reader = new FileReader(fileName);
    int numRead = reader.read(buffer, 0, buffer.length);
    while ( numRead != -1 ) {
         writer.write(buffer, 0, numRead);
         numRead = reader.read(buffer, 0, buffer.length);
    reader.close();
    writer.close();
    File file = new File(fileName);
    file.delete();
    %>This works believe it or not. If I put the target="_blank" on the form tag in the startReport.jsp it even opens in a new window. Great. But with that attribute on the form element, if the page comes back in error - it shows up in a new window (as it is apt to do given the attiribute).
    Ok, the h:commandButton tag's target attribute is ignored. Fine. There has to be a way to do this but I just cannot figure it out and I'm no JSP expert.
    What I think will work is this. Since my report beans create HTML files, I've created a session bean called "currentReportBean" which holds a single attribute - the name of the HTML file to display. (This is how the JSP above works.)
    What I need to know now *(this is the question part)* is how can I flush the render response of my JSF life cycle, trigger the opening of this JSP in a new window, the restart the JSF life cycle at the begining so the "parent" page repaints normally? The JSP isn't part of the JSF page flow so I there's no "going back" or "refresh" to worry about. I would like to take the showReportFile.jsp file out of the navigation files altogether.
    I know this topic has been worked on at length, but not quite this way. Any help is greatly appreciated.

    arnieAustin wrote:
    No, the JSP resets the bean value after showing the file.My mistake; it wasn't the reload scenario that is an issue. It is when the user goes back and forth in history that this can be a problem.
    >
    But now I'm confused. JS cannot access server-based session values. How is it going to know to open the page? A cookie?Write the value to a JS variable when you render the page.

  • ADF in Jdev 10.1.3.2 - Wrong Page Opens When "Open Link in New Window" Used

    We are former Oracle Forms/Reports developers and Struts developers in the early stages of a new project using ADF in JDeveloper 10.1.3.2. We are all new to this development environment (though not new to Java), so apologies in advance if this is trivial.
    Our early work is based on samples extracted from Oracle's ADF Tutorial for Forms/4GL developers and is pretty simple at this stage. We have done little more than create a page layout and implemented skeletons of each page. As long as we click a link with the left mouse button, we can navigate from page to page as expected, no problem.
    The strangeness starts when we right click a link, and select Open in New Window. For example:
    (Note, all of this is taking place in our development environment: Jdeveloper running on our personal PCs / laptops, we have not even tried to deploy to an application server yet):
    1. Open page 1.
    2. Error 1: Right click button or tab to page 2, select Open in New Window. Page 1, not page 2, will open in the new window.
    3. Close the new window so that the original page 1 is displayed.
    4. Left click a link to navigate to page 2. Page 2 is display as expected.
    5. On page 2, left click link back to page 1 (NOT the browser Back button). Page 1 is displayed as expected.
    6. Error 2: Right click a link to page 3, select Open in New Window. Page 2, not page 3 will open in the new window.
    7. Close the window containing Page 2. Left-click the link for page 3 and it will open as expected.
    8. On page 3, left click a link back to page 1 (NOT the browser Back button). Page 1 is displayed as expected.
    9. Now right-click the same link to page 3 as in step 6 and select open in new window and page 3 will display as expected.
    The logs mention "Reusing a cached session application module instance" and I think this is where our trouble is. I considered turning this caching off (if possible) to see if it clears up the problem, but (a) I don't see where to do that and (b) it seems like we would want to use any caching features once we go to production.
    I suspect we have some minor configuration error somewhere as it seems unlikely that ADF applications would all come with a "No opening in new windows allowed" warning. Or, maybe we are just missing the boat on why this shouldn't work. Either way, any useful guidance would be appreciated.
    Thanks!

    Pravin
    We dont get number datatype if you have SQL92 selected as SQL Flavour. So i dont think this would help. SQL TYPE Map is JAVA basically in my project. Do you want me to import some of oracle.jbo.domains specifically or something else you want me to do
    regards
    Amit

  • Adobe Reader 9.x crashes when opening some pdf files that work fine with Adobe Reader 8.x

    Adobe Reader 9 crashes when opening approximately 10% to 20% of the pdfs in my collection. The remaining 80% to 90% work without problems. The pdfs are launched by double-clicking the pdf file from Windows Explorer. The crashes occur with both v9.0 and v9.1. The pdfs that crash in v9.x work fine in older versions of Adobe Reader, such as v8.1.3. Furthermore, this behavior also occurs on all 3 virtual machine hosted on the same physical machine, with default Adobe Reader settings, for both v9.0 and v9.1. The virtual machines have little running in memory except standard Windows executables - i.e. they are fairly pristine. The operating systems for the virtual machines are XP SP3, XP SP2, and Windows Server 2003.
    Error message info in all cases:
    app=acrord32.exe
    app version=9.1.0.163
    module=jp2klib.dll
    module version=2.0.0.2579
    offset=0003277d
    Operating system for real computer: XP SP3
    CPU: 1333 MHz Athlon single core
    RAM: 1 GB
    To sum up, this problem happens on both a real computer running XP SP3, and also on all 3 virtual machines hosted on the same physical computer. I tried changing the Reader setting to not use hardware rendering, to no avail. I also tried various Data Execution Prevention settings in Windows, to no avail. All operating systems, the real and virtual ones, do not have problems with other programs that I use. I also tried a second machine with Adobe Reader v9.1 and the same exact problem pdfs, and had no issues. Thus, the problem happens on only one of the computers, but on the real and 3 virtual operating systems on that machine. There were no errors reported during any of the Reader installations. The virtual machines had no prior versions of Reader prior to Reader installation.

    I did further testing of 10 single page pdf files which I created from a single book. All 5 pdf files with images crashed in Reader v9.1. 0 of the 5 pdf files without images crashed in Reader v9.1. Reader v8.1.4 crashes on none of the 10 pdfs. Note that the crash always occurs in jp2klib.dll, which according to the file property description is 'JPEG2000 Core Library', which deals with images. So it seems the issue is in Adobe's jp2klib.dll, in combination with the hardware/software that I have. I used Microsoft's DirectX Diagnostic Tool to test DirectX, including visual tests of DirectDraw and Direct3D - everything worked as expected with no issues detected.<br /><br />Some information about my hardware:<br />Display drivers=Nvidia v84.21<br />Video card=GeForce FX 5200 with 128 MB RAM<br />CPU=AMD Athlon (single core)<br />System RAM=1024 MB in 3 DIMMs<br /><br />Further information about my hardware: (from the program System Information for Windows)<br /><br />Motherboard:<br />Manufacturer=ASUSTeK Computer INC.<br />Model=<A7V133><br />Version=REV 1.xx<br />Chipset Vendor=VIA Technologies Inc<br />Chipset Model=VT8363/5 KT133/KM133 System Controller<br />South Bridge=82C686B PCI to ISA Bridge<br />CPU=AMD Athlon<br />Cpu Socket=Slot A / Socket A [SOCKET A]<br />System Slots=5 PCI, 1 AGP<br />OnBoard devices=<unknown> (Disabled) Promise PDC20265<br />     <br />Memory Summary:<br />Location=System board or motherboard<br />Maximum Capacity=1536 MBytes<br />Memory Slots=3<br />Error Correction=None<br />Use=System memory<br /><br />CPU Info:<br />Number of CPU(s)=One Physical Processor / One Core / One Logical Processor<br />Vendor=AuthenticAMD<br />CPU Full Name=AMD Athlon<br />CPU Name=AMD Athlon(tm) Processor<br />CPU Code Name=Thunderbird<br />Technology=0.18µ<br />Platform Name=Slot A / Socket A<br />Type=Original OEM processor<br />FSB Mode=DDR<br />Type ID=0<br />CPU Clock=1323.68<br />L2 Cache Speed=1323.68 MHz<br />L2 Cache Speed=Full<br />CPU Family / Model / Stepping=6 / 4 / 4<br />L1 I-Cache=64 KB<br />L1 D-Cache=64 KB<br />L2 Cache=256 KB<br />RDMSR=00000000 00000000 00000000 00000000<br />MMX=Yes<br />MMX+=Yes<br />SSE=No<br />SSE2=No<br />SSE3=No<br />SSE4A=No<br />3DNow!=Yes<br />3DNow!+=Yes<br />DualCore=No<br />HyperThreading=No<br />AMD64=No<br />NX=No<br />VT=No<br />PowerNow!=No<br />LongHaul=No<br />LongRun=No<br />Architecture=x86<br /><br />Video:<br />AdapterCompatibility=NVIDIA<br />AdapterDACType=Integrated RAMDAC<br />AdapterRAM=128 MBytes<br />Availability=3<br />Caption=NVIDIA GeForce FX 5200<br />ConfigManagerErrorCode=0<br />ConfigManagerUserConfig=false<br />CurrentBitsPerPixel=32<br />CurrentHorizontalResolution=1280<br />CurrentNumberOfColors=4294967296<br />CurrentNumberOfColumns=0<br />CurrentNumberOfRows=0<br />CurrentRefreshRate=60<br />CurrentScanMode=4<br />CurrentVerticalResolution=1024<br />Description=NVIDIA GeForce FX 5200<br />DeviceID=VideoController1<br />DeviceSpecificPens=-1<br />DriverDate=20060309212900.000000-000<br />DriverVersion=6.14.10.8421<br />InfFilename=oem6.inf<br />InfSection=nv4_NV3x<br />InstalledDisplayDrivers=nv4_disp.dll<br />MaxRefreshRate=75<br />MinRefreshRate=60<br />Monochrome=false<br />Name=NVIDIA GeForce FX 5200<br />NumberOfColorPlanes=1<br />PNPDeviceID=PCI\VEN_10DEDEV_0322SUBSYS_91101462REV_A1\49AEDED500008<br />Status=OK<br />VideoArchitecture=5<br />VideoMemoryType=2<br />VideoModeDescription=1280 x 1024 x 4294967296 colors<br />VideoProcessor=GeForce FX 5200<br />BitsPerPel=32<br />DeviceName=NVIDIA GeForce FX 5200<br />DisplayFlags=0<br />DisplayFrequency=60<br />LogPixels=96<br />PelsHeight=1024<br />PelsWidth=1280<br />SettingID=NVIDIA GeForce FX 5200<br />SpecificationVersion=1025<br />BitsPerPixel=32<br />ColorPlanes=1<br />DeviceEntriesInAColorTable=-1<br />HorizontalResolution=1280<br />RefreshRate=60<br />VerticalResolution=1024<br />VideoMode=1280 by 1024 pixels, True Color, 60 Hertz<br />Video Bios Version=Version 4.34.20.22.00 <br />Video Bios Date=04/28/03<br />Name=GeForce FX 5200<br />Chip Type=GeForce FX 5200<br />DAC Type=Integrated RAMDAC<br />Memory=128 MBytes<br /><br />BIOS:<br />BIOS Version=ASUS   - 30303031, Award Medallion BIOS v6.0, Award Plug and Play BIOS Extension v1.0A, Award Modular BIOS v6.0<br />BIOS Date=04/23/02<br />BIOS Web Page=http://www.award.com<br />BIOS Vendor=Award Software, Inc.<br />Version=ASUS A7V-133 ACPI BIOS Revision 1009<br />Release=04/23/2002<br />BIOS Size=256 KB<br /><br />Memory:<br />Location=System board or motherboard<br />Maximum Capacity=1536 MBytes<br />Memory Slots=3<br />Error Correction=None<br />Use=System memory<br />Maximum Memory Module Size=1024 MBytes<br />Device Set=DIMM 1<br />Device Locator=DIMM 1<br />Capacity=256 MBytes<br />Memory Type=Synchronous DRAM<br />Data Width=64 bits<br />Form Factor=DIMM<br />Total Width=72 bits<br />Device Locator=DIMM 2<br />Capacity=256 MBytes<br />Memory Type=Synchronous DRAM<br />Data Width=64 bits<br />Form Factor=DIMM<br />Total Width=72 bits<br />Device Locator=DIMM 3<br />Capacity=512 MBytes<br />Memory Type=Synchronous DRAM<br />Data Width=64 bits<br />Form Factor=DIMM<br />Total Width=72 bits

  • After an upgrade to 10.8.5 I can not see my mails with Mail. No "Message Viewer" window- When open it from menu "Window" I have the message "Mail quit unexpectedly"

    Hi there
    I just upgrade to 10.8.5 (from snow leopard on an '08 iMac 2.4 GHz Intel Core 2 Duo with 4 GB memory) and I have a problem with Mail
    While during migration there was no problem and it looks like all my massages was transferred (more than 17.000 mails) when I open Mail there is no "Message Viewer" window and if I try to open it from menu "Window" I have the message "Mail quit unexpectedly" (I have report it to Apple).
    So I can not see my mails!!
    Otherwise everything looks "OK" with Mail. I can see all my accounts in Preferences, I can see other windows like Activity, I can even see the red indicator with he new mails on the Mail icon on the Dock… But I can not quit Mail, only Force quit…
    Thank you in advance for your help.
    I am really sorry but If there will be no solution I am afraid I will go back to snow leopard…

    Hello
    and thank you for your help
    I hope the following information are the ones you ask and useful!
    Step 1 
    24/9/13 11:18:37,404 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:18:37,408 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107640763 Mail + 1656675
              9   Mail                                0x0000000107640d13 Mail + 1658131
              10  Mail                                0x00000001076129e3 Mail + 1468899
              11  Mail                                0x000000010761321f Mail + 1471007
              12  AppKit                              0x00007fff89083199 -[NSPreferences _selectModuleOwner:] + 706
              13  AppKit                              0x00007fff8908289d -[NSPreferences _setupPreferencesPanelForOwner:] + 448
              14  AppKit                              0x00007fff89082944 -[NSPreferences showPreferencesPanelForOwner:] + 33
              15  Mail                                0x0000000107630177 Mail + 1589623
              16  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              17  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              18  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              19  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              20  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              21  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              22  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              23  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              24  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              25  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              26  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              27  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              28  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              29  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              30  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              31  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              32  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              33  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              34  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              35  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              36  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              37  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:18:56,856 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:18:56,856 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:18:56,858 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:19:26,862 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:19:26,863 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:19:26,864 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:19:56,957 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:19:56,957 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:19:56,959 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:20:26,962 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:20:26,962 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:20:26,963 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:20:57,310 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:20:57,311 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:20:57,312 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:21:06,290 μ.μ. WindowServer[2287]: CGXDisableUpdate: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    24/9/13 11:21:06,308 μ.μ. WindowServer[2287]: reenable_update_for_connection: UI updates were finally reenabled by application "Mail" after 1.03 seconds (server forcibly re-enabled them after 1.01 seconds)
    24/9/13 11:21:27,315 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:21:27,316 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:21:27,317 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:28:03,262 μ.μ. Mail[3161]: An uncaught exception was raised
    24/9/13 11:28:03,262 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:28:03,266 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x00000001074b6c7f Mail + 44159
              9   Mail                                0x00000001074b6133 Mail + 41267
              10  Mail                                0x000000010764fd73 Mail + 1719667
              11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
              13  Mail                                0x00000001074b5fe8 Mail + 40936
              14  Mail                                0x00000001074b5ea6 Mail + 40614
              15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
              16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
              17  AppKit                              0x00007fff88bbb11d loadNib + 317
              18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
              19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
              20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
              21  Mail                                0x00000001074b5002 Mail + 36866
              22  Mail                                0x00000001074b4ecc Mail + 36556
              23  Mail                                0x000000010762d8ac Mail + 1579180
              24  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              25  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              26  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              27  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              28  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              29  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              30  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              31  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              32  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              33  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              34  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              35  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              36  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              37  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              38  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              39  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              40  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              41  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              42  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              43  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              44  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              45  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:28:03,268 μ.μ. Mail[3161]: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray'
    *** First throw call stack:
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x00000001074b6c7f Mail + 44159
              9   Mail                                0x00000001074b6133 Mail + 41267
              10  Mail                                0x000000010764fd73 Mail + 1719667
              11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
              13  Mail                                0x00000001074b5fe8 Mail + 40936
              14  Mail                                0x00000001074b5ea6 Mail + 40614
              15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
              16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
              17  AppKit                              0x00007fff88bbb11d loadNib + 317
              18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
              19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
              20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
              21  Mail                                0x00000001074b5002 Mail + 36866
              22  Mail                                0x00000001074b4ecc Mail + 36556
              23  Mail                                0x000000010762d8ac Mail + 1579180
              24  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              25  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              26  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              27  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              28  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              29  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              30  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              31  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              32  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              33  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              34  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              35  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              36  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              37  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              38  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              39  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              40  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              41  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              42  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              43  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              44  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              45  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:28:04,903 μ.μ. com.apple.launchd.peruser.506[2322]: ([0x0-0x307307].com.apple.mail[3161]) Job appears to have crashed: Abort trap: 6
    24/9/13 11:28:08,393 μ.μ. ReportCrash[3465]: Saved crash report for Mail[3161] version 6.6 (1510) to /Users/------/Library/Logs/DiagnosticReports/Mail_2013-09-24-232808_----------- ---.crash
    24/9/13 11:44:24,585 μ.μ. Mail[3744]: Using V2 Layout
    24/9/13 11:44:27,235 μ.μ. Mail[3744]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:44:33,389 μ.μ. Mail[3744]: An uncaught exception was raised
    Step 2
    Process:         Mail [3744]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.6 (1510)
    Build Info:      Mail-1510000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [2322]
    User ID:         506
    Date/Time:       2013-09-24 23:48:10.137 +0300
    OS Version:      Mac OS X 10.8.5 (12F37)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray'
    Performing @selector(newViewerWindow:) from sender NSMenuItem 0x7fb33ac74df0
    abort() called
    terminate called throwing an exception
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
    3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
    4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
    5   Mail                                0x000000010dae822b Mail + 33323
    6   Mail                                0x000000010dae7cbf Mail + 31935
    7   Mail                                0x000000010dae7990 Mail + 31120
    8   Mail                                0x000000010daeac7f Mail + 44159
    9   Mail                                0x000000010daea133 Mail + 41267
    10  Mail                                0x000000010dc83d73 Mail + 1719667
    11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
    12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
    13  Mail                                0x000000010dae9fe8 Mail + 40936
    14  Mail                                0x000000010dae9ea6 Mail + 40614
    15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
    16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    17  AppKit                              0x00007fff88bbb11d loadNib + 317
    18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
    20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
    21  Mail                                0x000000010dae9002 Mail + 36866
    22  Mail                                0x000000010dae8ecc Mail + 36556
    23  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
    24  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
    25  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
    26  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
    27  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
    28  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
    29  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
    30  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
    31  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
    32  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
    33  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
    34  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
    35  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
    36  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
    37  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
    38  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
    39  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
    40  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    41  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
    42  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
    43  libdyld.dylib                       0x00007fff8883b7e1 start + 0
    44  ???                                 0x0000000000000002 0x0 + 2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8be9d212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff89fb6b24 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff89ffaf61 abort + 143
    3   libc++abi.dylib                         0x00007fff884b69eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff884b439a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8df81873 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff8dcc68fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff8df815de objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff8b2e60ca _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff8b2e6041 dispatch_once_f + 50
    10  com.apple.mail                          0x000000010dae9fe8 0x10dae0000 + 40936
    11  com.apple.mail                          0x000000010dae9ea6 0x10dae0000 + 40614
    12  com.apple.CoreFoundation                0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
    13  com.apple.AppKit                        0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    14  com.apple.AppKit                        0x00007fff88bbb11d loadNib + 317
    15  com.apple.AppKit                        0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    16  com.apple.AppKit                        0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
    17  com.apple.CoreMessage                   0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
    18  com.apple.mail                          0x000000010dae9002 0x10dae0000 + 36866
    19  com.apple.mail                          0x000000010dae8ecc 0x10dae0000 + 36556
    20  com.apple.AppKit                        0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
    21  com.apple.AppKit                        0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
    22  com.apple.AppKit                        0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
    23  com.apple.AppKit                        0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
    24  com.apple.AppKit                        0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
    25  com.apple.AppKit                        0x00007fff88e3a165 NSSLMMenuEventHandler + 342
    26  com.apple.HIToolbox                     0x00007fff8ed9ed1a DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1206
    27  com.apple.HIToolbox                     0x00007fff8ed9e1e9 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 410
    28  com.apple.HIToolbox                     0x00007fff8edb3fc9 SendEventToEventTarget + 40
    29  com.apple.HIToolbox                     0x00007fff8edeaca9 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 443
    30  com.apple.HIToolbox                     0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
    31  com.apple.HIToolbox                     0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
    32  com.apple.HIToolbox                     0x00007fff8ed8f85f FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 94
    33  com.apple.HIToolbox                     0x00007fff8ed6b8bb MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 605
    34  com.apple.HIToolbox                     0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
    35  com.apple.AppKit                        0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
    36  com.apple.AppKit                        0x00007fff88c1ba9f _DPSNextEvent + 2073
    37  com.apple.AppKit                        0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    38  com.apple.AppKit                        0x00007fff88c121a3 -[NSApplication run] + 517
    39  com.apple.AppKit                        0x00007fff88bb6bd6 NSApplicationMain + 869
    40  libdyld.dylib                           0x00007fff8883b7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8be9dd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8b2e8dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8b2e89ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8be9b686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8be9ac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8e0b9233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8e0be916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8e0be0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff83b64546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff83bc2562 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 3:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8be9d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89fb9fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8d92eb66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff8db51bfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x00007fff8db6725f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 4:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8be9d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89fb9fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8dab49d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff8dab48b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff8db6725f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8be9b686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8be9ac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8e0b9233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8e0be916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8e0be0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff83bc77ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x00007fff83b601aa -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x00007fff8cf7dd57 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x00007fff83bc2562 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8be9d322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8e0fdf46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5211e218  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff5211e240  rsp: 0x00007fff5211e218
       r8: 0x00007fff74393278   r9: 0x000000000000000d  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff5211e3a0  r13: 0x00007fb33bbe43d0  r14: 0x00007fff74394180  r15: 0x00007fff5211e280
      rip: 0x00007fff8be9d212  rfl: 0x0000000000000206  cr2: 0x00007fff7438cff0
    Logical CPU: 0
    Binary Images:
           0x10dae0000 -        0x10de7ffff  com.apple.mail (6.6 - 1510) <49BBA752-FE19-381B-BD78-1394141471D5> /Applications/Mail.app/Contents/MacOS/Mail
           0x10f5c8000 -        0x10f5cafff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x10f5cf000 -        0x10f5d2fff  libcrammd5.2.so (166) <866C8DD4-5086-376A-BFC7-897A40327DB4> /usr/lib/sasl2/libcrammd5.2.so
           0x10f5d8000 -        0x10f5dafff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x10f5de000 -        0x10f5f2fff  dhx.so (169) <3C4D7E51-F30B-3A5B-9BB6-4426EC607E10> /usr/lib/sasl2/dhx.so
           0x10fef2000 -        0x10fefbff7  digestmd5WebDAV.so (169) <D1EF0A0E-92FA-321F-9445-DD08A64C2493> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10ff04000 -        0x10ff0dff7  libdigestmd5.2.so (166) <F2344A08-F032-35D3-9EBB-F147D4100517> /usr/lib/sasl2/libdigestmd5.2.so
           0x10ff13000 -        0x10ff18fff  libgssapiv2.2.so (166) <83A21AF3-FB42-3ACC-B6ED-26B23388C4F4> /usr/lib/sasl2/libgssapiv2.2.so
           0x10ff1d000 -        0x10ff1ffff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x10ff23000 -        0x10ff28fff  libntlm.so (166) <82608FB8-E225-39FF-BC83-B9D3F89D7CEC> /usr/lib/sasl2/libntlm.so
           0x10ff2d000 -        0x10ff34fff  libotp.2.so (166) <2AE53E63-A826-3E20-9B4D-476CC712410D> /usr/lib/sasl2/libotp.2.so
           0x110089000 -        0x11008bfff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x11008f000 -        0x110093fff  libpps.so (169) <3C150ECF-0D94-3DBE-8AB6-7B0070700699> /usr/lib/sasl2/libpps.so
           0x1103dc000 -        0x1103dffff  mschapv2.so (169) <9DAC741E-6BB8-3DFA-85AD-532EB20E780B> /usr/lib/sasl2/mschapv2.so
           0x1103e4000 -        0x110411fff  com.apple.DirectoryService.PasswordServerFramework (10.8 - 27.1) <81194DEC-984F-3099-B537-F70394F8492C> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x110429000 -        0x11042bfff  p

  • Why does Illustrator crash when opening a file on Windows 8.1

    This morning I opened Illustrator and opened the file I was working on and the app crashed. It happened even when I tried to make a new document. I have CC, CC 2014 and CC (64-bit) and they all do the same thing. I'm running a Surface Pro 2 on Windows 8.1. Any ideas?

    I don't get a error message from the program itself. Windows decides to shut down illustrator. If I had just bought myself a mac...
    The next message from windows is:
    I've installed Design and web CS6. Each program works without issues except illustrator.

Maybe you are looking for

  • Image capture and iphoto show no photos from iPod Touch

    I am running OS 10.6.8 on my iMac and using iPhoto 7 and image capture. When I connect my iPod Touch (3rd generation) to my computer, both applications show my ipod as being connected, as does iTunes, but neither of the applications show the photos t

  • WEBUTIL_C_API.REGISTER_FUNCTION will not work.

    Hello All! I am using Oracle 10g AS and trying to call a DLL using WEBUTIL which works fine with the JInitiator 1.3.1.22 but failing with the JRE 1.4.2_06 with the above given ERROR message. Can any one have any idea where i missed ? Thanks in Advanc

  • International Error In MediaGo?!

    Hi      I recently bought a 16GB micro SDHC for my Sony Ericsson Aino. As usual, I started to sync my playlists onto my Aino, but then I received this error when there was multiple language songs in a playlist: Due to device limitations with internat

  • Can't close RAM ejector clips

    24" iMac 2.16 intel-based machine (white case) Tried to install RAM following this instruction: http://docs.info.apple.com/article.html?artnum=303084 RAM installed fine, but I can not close the DIMM ejector clips. If I close them partially before ins

  • MOVED: K9A2 Platinum trouble with mouse.

    This topic has been moved to AMD64 ATI/SiS/VIA boards. https://forum-en.msi.com/index.php?topic=145567.0