Can not upload Excel file

We developed a web site,There are file upload function.
Web site running on the NetWeaver
Can upload .rar .pdf .bin   files. But when upload Excel file ,It Often failed,Occasionally, the success of.
I have imp notes for update sevletinputstreamreadtimeout parameter, now it is 180000.
Pls help me

Hi,
I have had issues with sporadic document upload problems. There are several SAP notes. Primarily there is an issue with Internet Explorer and keepalive timouts. Try each/all of these three options.
1) Examine the keepalivetimeout settings (see SAP note 900804)
2) Examine MaxRequestContentLenght setting (see SAP note 898637)
3) Ensure that your Temporary directories for the J2EE server are set correctly use the Config Tool to add new parameters
-Djava.io.tmpdir=[a suitable temp directory ([SID]ADM user needs read write acces)]
-Dcm.tmpdir=e:\EP_TEMP (example) (see SAP Note 898637)
Hope this helps
Regards
Alex

Similar Messages

  • Firefox 7.0 - Can not upload the file from local machine to server...gives "error 404 : file not found"

    firefox 7.0 - Can not upload the file from local machine to server...gives "error 404 : file not found"

    you have not understood my point
    how does this code will run on servlet when I want to upload a file from client's
    machine to server machine
    what I am doing is I am giving an option to the user that he/she can browse the file and then select any file and finally it's action is post in the jsp form for which I have sent the code
    All the computers are connected in LAN
    So how to upload a file from client's machine to server's machine
    Plz give me a solution

  • OFFICE 2010 can not open EXCEL files by double click, only File Open....

    Hi:
    I am using WIN7 ultimate 64 bit and excel 2010 (office 2010 Pro plus).
    I can not open any excel file(.xls and .xlsx) with a double click on the file. if I double click on the file, the application launches and excel starts, but no file is loaded and no error message, I have to manually go file open and select the file and
    then it opens correctly...
    I have tried every solutions I can find from internet, but none worked....
    1.Repair the office 2010 instalation.------doesn't work.
    2.Right-click the file >>Select "Open With" and select [Excel 2010]>> Check always use this program. ------doesn't work.
    3.Options>>Advanced>>General section>>unchecked "Ignore Other Applications that use Dynamic Data Exchange (DDE)".------doesn't work.
    4.Run>> input "Excel /regserver". ------doesn't work.
    5.Create new user profiles.------doesn't work.
    6.Delete EXCEL folder under "HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\".------doesn't work.
    Is there any other solutions can fix this problem? Any help are appreciated. 
    Yong.

    Hello Yong,
    Thanks for posting in our forum. Seems you've already tried lots of things, and I can see that those are all steps that reportedly have worked for others.
    Here is one more thing that you might want to have a try:
    Open Registry Editor
    Go to the registry key HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\Open\command
    Highlight the key, select the (Default), select "Modify..."
    from the pull-down menu and then enter the value below: "C:\Program Files\Microsoft Office 15\Root\Office15\EXCEL.EXE"
    "%1" (include the quote marks)
    Then OK your way out
    Please have a try and feel free to post back.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Can not upload a file to office365 in SharePoint

    We have an Operation site in SharePoint, created a Shared Document directory. When we drag any file into that folder it uploads it there for viewing/editing etc. (The system use to do this) Now with version 37 release it does not upload, it just says it is uploading but does not. (see pic) What settings have to change?
    Note: on previous versions the top header bar (in black) would display icons (links) to outlook emails and my IM photo
    Attach a chome version with and a firefox version without.......
    I take it back the system will NOT upload images....

    http://kb.mozillazine.org/Unable_to_save_or_download_files

  • Can not upload an excel file if it is opening.

    I found I can not upload an excel file if it is opening(using) at same time. My questions are:
    (1)How can I still upload an excel file even it is opening at same time? Or
    (2)How to check the file which is opening(using) or not and give a pop-up message?
    Thanks

    Hi Michael,
    (1) NO you can't.
    (2) Yes you can check testing sy-subrc of "OPEN DATASET" or "GUI_UPLOAD"
    CALL FUNCTION 'GUI_UPLOAD'                  
           EXPORTING                            
             filename                = x_file   
             has_field_separator     = '#'      
             filetype                = l_filetype
           TABLES                               
             data_tab                = file_y   
           EXCEPTIONS                           
             file_open_error         = 1        
             file_read_error         = 2        
             no_batch                = 3        
             gui_refuse_filetransfer = 4        
             invalid_type            = 5        
             no_authority            = 6        
             unknown_error           = 7        
             bad_data_format         = 8        
             header_not_allowed      = 9        
             separator_not_allowed   = 10       
             header_too_long         = 11       
             unknown_dp_error        = 12       
             access_denied           = 13       
             dp_out_of_memory        = 14       
             disk_full               = 15       
             dp_timeout              = 16       
             OTHERS                  = 17.      
    Hope this helps,
    Erwan

  • Can 'GUI_UPLOAD'  to be used to upload excel file lonely?

    Hi experts,
    I wonder that can 'GUI_UPLOAD'  to be used to upload excel file lonely. I tried and use 'asc' as the L_FILETYPE, but the data uploaded contain many '###yyy'. But if I save the excel file as a txt file,
    the data can be uploaded by 'GUI_UPLOAD' correctly. So what is the problem?

    Excel files be can't uploaded using "GUI_UPLOAD".
    Use the FM "ALSM_EXCEL_TO_INTERNAL_TABLE"
    Try this code:
    * Upload data direct from excel.xls file to SAP
    REPORT ZEXCELUPLOAD.
    PARAMETERS: filename LIKE rlgrap-filename MEMORY ID M01,
                begcol TYPE i DEFAULT 1 NO-DISPLAY,
                begrow TYPE i DEFAULT 1 NO-DISPLAY,
                endcol TYPE i DEFAULT 100 NO-DISPLAY,
                endrow TYPE i DEFAULT 32000 NO-DISPLAY.
    * Tick don't append header
    PARAMETERS: kzheader AS CHECKBOX.
    DATA: BEGIN OF intern OCCURS 0.
            INCLUDE STRUCTURE  alsmex_tabline.
    DATA: END OF intern.
    DATA: BEGIN OF intern1 OCCURS 0.
            INCLUDE STRUCTURE  alsmex_tabline.
    DATA: END OF intern1.
    DATA: BEGIN OF t_col OCCURS 0,
           col LIKE alsmex_tabline-col,
           size TYPE i.
    DATA: END OF t_col.
    DATA: zwlen TYPE i,
          zwlines TYPE i.
    DATA: BEGIN OF fieldnames OCCURS 3,
            title(60),
            table(6),
            field(10),
            kz(1),
          END OF fieldnames.
    * No of columns
    DATA: BEGIN OF data_tab OCCURS 0,
           value_0001(50),
           value_0002(50),
           value_0003(50),
           value_0004(50),
           value_0005(50),
           value_0006(50),
           value_0007(50),
           value_0008(50),
           value_0009(50),
           value_0010(50),
           value_0011(50),
           value_0012(50),
           value_0013(50),
           value_0014(50),
           value_0015(50),
           value_0016(50),
           value_0017(50),
           value_0018(50),
           value_0019(50),
           value_0020(50),
           value_0021(50),
           value_0022(50),
           value_0023(50),
           value_0024(50),
           value_0025(50),
           value_0026(50),
           value_0027(50),
           value_0028(50),
           value_0029(50),
           value_0030(50),
           value_0031(50),
           value_0032(50),
           value_0033(50),
           value_0034(50),
           value_0035(50),
           value_0036(50),
           value_0037(50),
           value_0038(50),
           value_0039(50),
           value_0040(50),
           value_0041(50),
           value_0042(50),
           value_0043(50),
           value_0044(50),
           value_0045(50),
           value_0046(50),
           value_0047(50),
           value_0048(50),
           value_0049(50),
           value_0050(50),
           value_0051(50),
           value_0052(50),
           value_0053(50),
           value_0054(50),
           value_0055(50),
           value_0056(50),
           value_0057(50),
           value_0058(50),
           value_0059(50),
           value_0060(50),
           value_0061(50),
           value_0062(50),
           value_0063(50),
           value_0064(50),
           value_0065(50),
           value_0066(50),
           value_0067(50),
           value_0068(50),
           value_0069(50),
           value_0070(50),
           value_0071(50),
           value_0072(50),
           value_0073(50),
           value_0074(50),
           value_0075(50),
           value_0076(50),
           value_0077(50),
           value_0078(50),
           value_0079(50),
           value_0080(50),
           value_0081(50),
           value_0082(50),
           value_0083(50),
           value_0084(50),
           value_0085(50),
           value_0086(50),
           value_0087(50),
           value_0088(50),
           value_0089(50),
           value_0090(50),
           value_0091(50),
           value_0092(50),
           value_0093(50),
           value_0094(50),
           value_0095(50),
           value_0096(50),
           value_0097(50),
           value_0098(50),
           value_0099(50),
           value_0100(50).
    DATA: END OF data_tab.
    DATA: tind(4) TYPE n.
    DATA: zwfeld(19).
    FIELD-SYMBOLS: <fs1>.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR filename.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
           EXPORTING
                mask      = '*.xls'
                static    = 'X'
           CHANGING
                file_name = filename.
    START-OF-SELECTION.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
           EXPORTING
                filename                = filename
                i_begin_col             = begcol
                i_begin_row             = begrow
                i_end_col               = endcol
                i_end_row               = endrow
           TABLES
                intern                  = intern
           EXCEPTIONS
                inconsistent_parameters = 1
                upload_ole              = 2
                OTHERS                  = 3.
      IF sy-subrc <> 0.
        WRITE:/ 'Upload Error ', SY-SUBRC.
      ENDIF.
    END-OF-SELECTION.
      LOOP AT intern.
        intern1 = intern.
        CLEAR intern1-row.
        APPEND intern1.
      ENDLOOP.
      SORT intern1 BY col.
      LOOP AT intern1.
        AT NEW col.
          t_col-col = intern1-col.
          APPEND t_col.
        ENDAT.
        zwlen = strlen( intern1-value ).
        READ TABLE t_col WITH KEY col = intern1-col.
        IF sy-subrc EQ 0.
          IF zwlen > t_col-size.
            t_col-size = zwlen.
    *                          Internal Table, Current Row Index
            MODIFY t_col INDEX sy-tabix.
          ENDIF.
        ENDIF.
      ENDLOOP.
      DESCRIBE TABLE t_col LINES zwlines.
      SORT intern BY row col.
      IF kzheader = 'X'.
        LOOP AT intern.
          fieldnames-title = intern-value.
          APPEND fieldnames.
          AT END OF row.
            EXIT.
          ENDAT.
        ENDLOOP.
      ELSE.
        DO zwlines TIMES.
          WRITE sy-index TO fieldnames-title.
          APPEND fieldnames.
        ENDDO.
      ENDIF.
      SORT intern BY row col.
      LOOP AT intern.
        IF kzheader = 'X'
        AND intern-row = 1.
          CONTINUE.
        ENDIF.
        tind = intern-col.
        CONCATENATE 'DATA_TAB-VALUE_' tind INTO zwfeld.
        ASSIGN (zwfeld) TO <fs1>.
        <fs1> = intern-value.
        AT END OF row.
          APPEND data_tab.
          CLEAR data_tab.
        ENDAT.
      ENDLOOP.
      CALL FUNCTION 'DISPLAY_BASIC_LIST'
           EXPORTING
                file_name     = filename
           TABLES
                data_tab      = data_tab
                fieldname_tab = fieldnames.
    *-- End of Program

  • Upload Excel File from Portal (R/3 working fine)

    Hi Experts!!
    We have a report in which we are uploading an excel file from presentation server into an itab. When F4 clicked for file path, browser will open for choosing the path. Now, we have created an iView in Portal for this t-code. However, F4 is not working from Portal, rather giving an error 'Please wait. You will be forwarded automatically. This page had to be included for technical reasons.'.
    We need to upload excel file even from Portal too. Can somebody please give me some inputs or suggestions?

    Hi Jigar,
    Now I am able to get into SAP screen. However it's not opening the t-code that I mentioned. I gave some Z t-code ZTEST. Once I check the iView, it is showing SAP screen with the below things:
    Service Type:
    Service ID:
    TCode: ZTEST
    Object Type:
    Key:
    Field 1:
    Val. 1:
    Field 2:
    Val.2:
    Field 3:
    Val 3:
    And at the bottom it's giivng a warning message:
    Object type or object does not exist
    Message no. 1W001
    In iView properties I can see Object Type as com.sapportals.portal.iview. Is this the same Object Type that the message is talkign about? Can you please help me out?

  • How to upload excel file in Webdynpro application using ABAP

    Hi Experts,
    Am developing a webdynpro application in which it will take an excel file as input and display the contents in the form of a table in output. I am able to upload tab delimited text file and populate the table using the below code but not able to do the same with .xls file. Pls let me know if I need to use a different function module for upload excel file.
    get single attribute
      wd_context->get_attribute(
        EXPORTING
          name =  `DATASOURCE`
        IMPORTING
          value = l_xstring ).
      CALL FUNCTION 'HR_KR_XSTRING_TO_STRING'
        EXPORTING
          in_xstring = l_xstring
        IMPORTING
          out_string = l_string.
      SPLIT l_string  AT cl_abap_char_utilities=>newline INTO TABLE i_data.
    Bind With table Element.
      LOOP AT i_data INTO l_string.
        SPLIT l_string AT cl_abap_char_utilities=>horizontal_tab INTO TABLE fields.
        READ TABLE fields INTO lv_field INDEX 1.
        fs_table-name = lv_field.
        READ TABLE fields INTO lv_field INDEX 2.
        fs_table-age = lv_field.
        APPEND fs_table TO t_table1.
      ENDLOOP.
    lo_nd_data = wd_context->get_child_node( 'DATA_TAB' ).
    lo_nd_data->bind_table( T_TABLE1 ).
    Thanks,
    Subathra

    Dear Exports
    Can anyone guide me how to uplode the .xlsx or ..xls formatted excel file using abap webdynpro without converting it to .txt file. Because my client requirement is only to upload the excel file. because to convert the .xlsx flie to .txt file it will be time taking and cost expanssive. Another requirement is suppose today i have create a application for uploading a file which has 8 columns and 10 rows. suppose tomorrow the client will make some changes in that flat file means the client will add 2 extra columns and 10 more columns in that fil. and will upload that file. Then the new file will be display on the browser or old file. but my requirement is to display the new file in browser.
    Can anyone kindly help to solve my problem. I am completely fresher in this field and I need to do it as soon as possible. Please help to solve the problem. 
    Regards
    Rashmita

  • Uploading Excel file  using 'ALSM_EXCEL_TO_INTERNAL_TABLE'

    Hi,
    I am uploading excel file into an internal table using 'ALSM_EXCEL_TO_INTERNAL_TABLE' FM.
    but I'm getting a popup with the message
    'There is a large amount of the information on the clipboard. Do you want to be able to paste this information into another programme later.' and there are three buttons in the popup 'YES', 'CANCEL' and 'NO'. but for any choice there is no data in the internal table. 
    the progrsm is working in other systems but giving problem in customer laptop, can you please tell me is there any settings need to set for EXCEL or SAP.
    system details are as below
    OS: windows 7
    MS-Office - 2007
    SAP : ECC06

    Looks like there was an intention to clear the clipboard in the code, but this does not seem to work.
    I copied the function module to my own version and added the following code, which seems to work :
    * clear clipboard
      refresh excel_tab.
      call method cl_gui_frontend_services=>clipboard_export
         importing
            data                 = excel_tab
         changing
            rc                   = ld_rc
         exceptions
            cntl_error           = 1
    *       ERROR_NO_GUI         = 2
    *       NOT_SUPPORTED_BY_GUI = 3
            others               = 4
    * Copy only one cell to prevent the clipboard data message.
      call method of worksheet 'Cells' = h_cell
          exporting #1 = 1 #2 = 1.
      m_message.
      call method of worksheet 'Cells' = h_cell1
          exporting #1 = 1 #2 = 1.
      m_message.
      call method  of worksheet 'RANGE' = range
                     exporting #1 = h_cell #2 = h_cell1.
      m_message.
      call method of range 'SELECT'.
      m_message.
    * copy marked area (whole spread sheet) into Clippboard
      call method of range 'COPY'.
      m_message.
    * quit Excel and free ABAP Object - unfortunately, this does not kill
    * the Excel process
      call method of application 'QUIT'.
      m_message.

  • Uploading Excel file to SAP

    Hi Friends,
    Iam trying to Upload Excel file into SAP using the FM
    ALSM_EXCEL_TO_INTERNAL_TABLE. But it is going to dump n the error is                                                                             
    The call to the function module "ALSM_EXCEL_TO_INTERNAL_TABLE" is incorrect:                                                                               
    In the function module interface, you can specify only                          
    fields of a specific type and length under "INTERN".                            
    Although the currently specified field                                          
    "ITAB" is the correct type, its length is incorrect.                            
    I have attached the code also.
    Please let me know where iam getting the error.
    Code :
    Tables : mara,
             ztable.
    parameters : p_infile like rlgrap-filename.
    data : begin of itab occurs 0,
           matnr like mara-matnr,
           mbrsh like mara-mbrsh,
           matkl like mara-matkl,
           end of itab.
           CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
             EXPORTING
               FILENAME                      = p_infile
               I_BEGIN_COL                   = 1
               I_BEGIN_ROW                   = 1
               I_END_COL                     = 100
               I_END_ROW                     = 100
             TABLES
               INTERN                        = itab
           EXCEPTIONS
             INCONSISTENT_PARAMETERS       = 1
             UPLOAD_OLE                    = 2
             OTHERS                        = 3
           IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
           ENDIF.
    sort itab by matnr.
    loop at itab.
    write:/ itab.
    *modify ztable from table itab.
    endloop.

    hi check this code:
    DATA : BEGIN OF TYP_INPUT ,
               MATNR LIKE MARA-MATNR,
               WERKS LIKE MARC-WERKS,
               LGORT LIKE MARD-LGORT,
               LGNUM LIKE MLGN-LGNUM,
               LGTYP LIKE MLGT-LGTYP,
               LTKZA LIKE MLGN-LTKZA,
               LTKZE LIKE MLGN-LTKZE,
               LGBKZ LIKE MLGN-LGBKZ,
               LGPLA LIKE MLGT-LGPLA,
            END OF TYP_INPUT.
    *Input File Data
    DATA : IT_FILE LIKE TYP_INPUT OCCURS 0 WITH HEADER LINE.
    *"INTERNAL TAB TO TAKE EXCEL SHEET.
    DATA : IT_EXCEL    LIKE ALSMEX_TABLINE OCCURS 0 WITH HEADER LINE.
           CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
            EXPORTING
                 FILENAME                = P_PFILE
                 I_BEGIN_COL             = 1
                 I_BEGIN_ROW             = 2
                 I_END_COL               = 9
                 I_END_ROW               = 6000
            TABLES
                 INTERN                  = IT_EXCEL
            EXCEPTIONS
                 INCONSISTENT_PARAMETERS = 1
                 UPLOAD_OLE              = 2
                 OTHERS                  = 3.
    * IT_EXCEL CONTAINS DATA IN THE FORM OF ROW, COL, VALUE       *
    * CONVERTING THAT INTERNAL TABLE TO FORMAT THAT OF EXCEL SHEET *
       IF NOT IT_EXCEL[] IS INITIAL.
         SORT IT_EXCEL BY ROW COL.
         LOOP AT IT_EXCEL.
           CASE IT_EXCEL-COL.
            WHEN 1.
                  IT_FILE-MATNR = IT_EXCEL-VALUE.
            WHEN 2.
                  IT_FILE-WERKS = IT_EXCEL-VALUE.
            WHEN 3.
                  IT_FILE-LGORT = IT_EXCEL-VALUE.
            WHEN 4.
                  IT_FILE-LGNUM = IT_EXCEL-VALUE.
            WHEN 5.
                  IT_FILE-LGTYP = IT_EXCEL-VALUE.
            WHEN 6.
                  IT_FILE-LTKZA = IT_EXCEL-VALUE.
            WHEN 7.
                  IT_FILE-LTKZE = IT_EXCEL-VALUE.
            WHEN 8.
                  IT_FILE-LGBKZ = IT_EXCEL-VALUE.
            WHEN 9.
                  IT_FILE-LGPLA = IT_EXCEL-VALUE.
           ENDCASE.
           AT END OF ROW.
             APPEND IT_FILE.
             CLEAR IT_FILE.
           ENDAT.
         ENDLOOP.
       ELSE.
         MESSAGE I000  WITH 'The input file is empty'.
         STOP.
       ENDIF.

  • Uploading excel files into Web UI

    We are following the blog http://wiki.sdn.sap.com/wiki/display/CRM/CRMWebUI-UploadingdatafromExcelfiles
    to upload excel files into Web UI.
    The  problem which we are facing is that the values are not getting populated in the text are and in the
    event handler EH_ONSERVEREVENT, no values are being populated in lt_items table.
    It would be great if someone could help us with this.

    Hi Nidhi,
    I have tried the blog but due to some reason, could not get it worked out.
    But, If U are ok to use CSV input files, instead of excel, U can use the standard component "GS_FILE_UPLOAD" as a popup and upload the files into the required assignment blocks.

  • Help Required:How Upload Excel file Into Oracle Table Using PLSQL Procedure

    Please Help , Urgent Help Needed.
    Requirement is to Upload Excel file Into Oracle Table Using PLSQL Procedure/Package.
    Case's are :
    1. Excel File is On Users/ Client PC.
    2. Application is on Remote Server(Oracle Forms D2k).
    3. User Is Using Application Using Terminal Server LogIn.
    4. So If User Will Use to GET_FILE_NAME() function of D2K to Get Excel File , D2k Will Try to pick File from That Remote Server(Bcs User Logind from Terminal Server Option).
    5. Cannot Use Util_File Package Or Oracle Directory to Place That File on Server.
    6. we are Using Oracle 8.7
    So Need Some PL/SQL Package or Fuction/ Procedure to Upload Excel file on User's Pc to Oracle Table.
    Please Guide me wd some Code. or with Some Pl/SQL Package, or With SOme Hint. Or any Link ....
    Jus help to Sort This Issue ........
    you can also write me on :
    [email protected], [email protected]

    TEXT_IO is a PL/SQL package available only in Forms (you'll want to post in the Forms forum for more information). It is not available in a stored procedure in the database (where the equivalent package is UTL_FILE).
    If the Terminal Server machine and the database machine do not have access to the file system on the client machine, no application running on either machine will have access to the file. Barring exceptional setups (like the FTP server on the client machine), your applications are not going to have more access to the client machine than the operating system does.
    If you map the client drives from the Terminal Server box, there is the potential for your Forms application to access those files. If you want the files to be accessible to a stored procedure in the database, you'll need to move the files somewhere the database can access them.
    Justin

  • Problem in Uploading excel file using WebDynpro for Java

    Hi  All
    I have followed for Uploading excel file using WebDynpro for Java added by  Tulasi Palnati
    I done all, but I'm getting 500 Exception please contact u r system admin meag  at run time also  Jxl/Workbook class not found msag  but i downloaded Jxl.jar file and  there is no error signals  in coding part. How can I solve the Problem.
    Thanks
    Polaka

    Please ask the people in the Web Dynpro Java forum for a solution.

  • Can I upload excel sheets to BC for other admins to see?

    Can I upload excel sheets to BC for other admins to see?  Like inventory sheets...

    Currently you cannot upload folders. You can upload multiple files at once as long as you are not using the IE browser, which by Microsoft's design does not allow multiple file upload. Improved sharing and collaboration is coming. You can read more here http://blogs.adobe.com/creativecloud/coming-soon-to-creative-cloud/.

  • Can not upload anything when Finder window pops up on Mavericks

    Running Mavericks here and just can not upload anything anymore on Facebook for example, it also happens on other webpages too where the finder window pops up to select a file to upload. The browser freezes and I have to force quit it, tried Safari, Chrome and Firefox... all the same, this leads me to believe it's a Finde issue. Don't know what to do! Bellow the crash report:
    Date/Time:       2013-11-09 19:56:10 -0200
    OS Version:      10.9 (Build 13A603)
    Architecture:    x86_64
    Report Version:  18
    Command:         Safari
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Version:         7.0 (9537.71)
    Build Version:   3
    Project Name:    WebBrowser
    Source Version:  7537071000000000
    Parent:          launchd [146]
    PID:             355
    Event:           hang
    Duration:        1.76s
    Steps:           18 (100ms sampling interval)
    Hardware model:  MacBookAir4,1
    Active cpus:     4
    Fan speed:       1996 rpm
    Free pages:      119152 pages (-1591)
    Pageins:         0 pages
    Pageouts:        0 pages
    Swapins:         0 pages
    Swapouts:        0 pages
    Process:         Safari [355]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Architecture:    x86_64
    Parent:          launchd [146]
    UID:             501
    Task size:       79463 pages
    CPU Time:        0.007s
    Dispatch Thread Soft Limit Reached:   64  (too many dispatch threads blocked in synchronous operations)
      Thread 0x1fbe     DispatchQueue 1          priority 47       
      18 start + 1 (libdyld.dylib) [0x10e9ce5fd]
        18 SafariMain + 267 (Safari) [0x10812476d]
          18 NSApplicationMain + 940 (AppKit) [0x10c328803]
            18 -[NSApplication run] + 553 (AppKit) [0x10c33d9cc]
              18 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161 (Safari) [0x107f544a0]
                18 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122 (AppKit) [0x10c3498db]
                  18 _DPSNextEvent + 1434 (AppKit) [0x10c34a28e]
                    18 _BlockUntilNextEventMatchingListInModeWithFilter + 65 (HIToolbox) [0x10df04abc]
                      18 ReceiveNextEventCommon + 173 (HIToolbox) [0x10df04b85]
                        18 RunCurrentEventLoopInMode + 226 (HIToolbox) [0x10df04f0d]
                          18 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x10b477275]
                            18 __CFRunLoopRun + 1525 (CoreFoundation) [0x10b477aa5]
                              18 __CFRunLoopDoTimers + 298 (CoreFoundation) [0x10b52d76a]
                                18 __CFRunLoopDoTimer + 1151 (CoreFoundation) [0x10b4bc25f]
                                  18 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (CoreFoundation) [0x10b4bc724]
                                    18 -[NSApplication(NSQuietSafeQuit) _updateCanQuitQuietlyAndSafely] + 201 (AppKit) [0x10c52f783]
                                      18 _LSSetApplicationInformationItem + 101 (LaunchServices) [0x10f41bb17]
                                        18 _LSSetApplicationInformation + 263 (LaunchServices) [0x10f4114ec]
                                          18 xpc_connection_send_message_with_reply_sync + 195 (libxpc.dylib) [0x10eccb733]
                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x1fc7     DispatchQueue 2          priority 49         cpu time   0.001s
      18 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x10e997152]
        18 kevent64 + 10 (libsystem_kernel.dylib) [0x10eb6f662]
         *18 ??? (mach_kernel + 3948480) [0xffffff80005c3fc0]
      Thread 0x1fc8     DispatchQueue 6          priority 21       
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]
                                                          18 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x111824b9f]
                                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x1fd0     DispatchQueue 6          priority 17       
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]
                                                          18 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x111824b9f]
                                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x1fd5     DispatchQueue 6          priority 6        
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]
                                                          18 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x111824b9f]
                                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x1fd6     DispatchQueue 6          priority 7        
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]
                                                          18 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x111824b9f]
                                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x20c3     DispatchQueue 6          priority 4        
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]
                                                          18 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x111824b9f]
                                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x20cb     DispatchQueue 6          priority 25       
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]
                                                          18 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x111824b9f]
                                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x20cc     DispatchQueue 6          priority 17       
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]
                                                          18 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x111824b9f]
                                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x20ce     DispatchQueue 6          priority 24       
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]
                                                          18 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x111824b9f]
                                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x20d2     DispatchQueue 6          priority 47       
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]
                                                          18 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x111824b9f]
                                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x20d5     DispatchQueue 6          priority 47       
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]
                                                          18 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x111824b9f]
                                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x20d6     DispatchQueue 6          priority 47       
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]
                                                          18 IconImageRequestor::CreateCGImage(_LSBinding*, unsigned int, unsigned int, __CFDictionary const*) + 351 (IconServices) [0x111824b9f]
                                                            18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10eb6aa56]
                                                             *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff800023b550]
      Thread 0x20d7     DispatchQueue 6          priority 47       
      18 start_wqthread + 13 (libsystem_pthread.dylib) [0x10ec80fb9]
        18 _pthread_wqthread + 314 (libsystem_pthread.dylib) [0x10ec7def8]
          18 _dispatch_worker_thread2 + 40 (libdispatch.dylib) [0x10e998193]
            18 _dispatch_root_queue_drain + 326 (libdispatch.dylib) [0x10e99709e]
              18 _dispatch_client_callout + 8 (libdispatch.dylib) [0x10e9952ad]
                18 _dispatch_call_block_and_release + 12 (libdispatch.dylib) [0x10e9981d7]
                  18 ___ZN22IAsynchronousOperation19PerformAsyncOnQueueEP16dispatch_queue_sy_block_i nvoke + 27 (FinderKit) [0x121eae1fe]
                    18 TQuickAliasResolver::FirstStepOnSecondaryThread() + 52 (FinderKit) [0x121f850b8]
                      18 TFENode::CopyFromAlias(bool, bool, OpaqueNodeRequest*, unsigned int, TFENode&) const + 159 (FinderKit) [0x121e44153]
                        18 NodeCopyFromAlias + 267 (DesktopServicesPriv) [0x10dd59d38]
                          18 TNode::FollowAlias(TNodePtr&, OpaqueNodeRequest* const&, unsigned int) const + 1586 (DesktopServicesPriv) [0x10dd5a40a]
                            18 TNode::FollowAlias(unsigned int) const + 175 (DesktopServicesPriv) [0x10dd69871]
                              18 TFSInfo::FollowAliasOrSymlinkDeep(unsigned int, TCountedPtr<TFSInfo>&, int) const + 749 (DesktopServicesPriv) [0x10dde6eb5]
                                18 _CFURLCreateBookmarkData + 465 (CoreServicesInternal) [0x115315c53]
                                  18 createBookmarkWithURLAtDepth(__CFAllocator const*, __CFURL const*, unsigned long, __CFURL const*, __CFArray const*, BookmarkMutableData&, unsigned int, bool, __CFError**) + 312 (CoreServicesInternal) [0x115316317]
                                    18 encodeResourcePropertyIntoBookmark(BookmarkMutableData&, __CFURL const*, __CFString const*, unsigned int, __CFError**) + 46 (CoreServicesInternal) [0x115317966]
                                      18 CFURLCopyResourcePropertyForKey + 123 (CoreFoundation) [0x10b4636bb]
                                        18 _FSURLCopyResourcePropertyForKey + 15 (CoreServicesInternal) [0x115322d91]
                                          18 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 213 (CoreServicesInternal) [0x115322e6b]
                                            18 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 227 (CoreServicesInternal) [0x11532517f]
                                              18 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 53 (LaunchServices) [0x10f416098]
                                                18 prepareEffectiveIconImageDataValue(__CFURL const*, __FileCache*, __CFError**) + 40 (LaunchServices) [0x10f49d122]
                                                  18 _BindingCopyIconFamilyData(__Binding*, __CFData const**) + 118 (LaunchServices) [0x10f49cce2]
                                                    18 IconRefToIconFamily + 44 (HIServices) [0x10f8e2307]
                                                      18 _ISIconRefToIconFamily + 89 (IconServices) [0x11181346d]
                                                        18 _ISCopyICNSDataFromBinding + 705 (IconServices) [0x111812d97]

    I have the same issue and found it was specific to uploading something from My Desktop.  I finally found this article which helped but when I completely quit Firefox i continue to get the error.  I then go back in, double-click to toggle from false to true again, quit Firefox and the problem goes away again.  I do not understand anything further to this problem and do not want to continue to repeat this process every time I quite Firefox.  Any suggestions or other help?
    https://support.mozilla.org/en-US/kb/upgrade-graphics-drivers-use-hardware-accel eration

Maybe you are looking for