Skip to content
Permalink
static-analysi…
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on May 27, 2015

  1. Removed forced garbage collection as it led to crashes on Linux (#425,

    …closes #464).
    
    The forced collection didn't have the expected effect and also caused
    sporadic crashes on some Linux versions.
    pkulchenko committed May 27, 2015

Commits on May 21, 2015

  1. Added workaround to fix crash on Linux from the project tree (#425, #464

    ).
    
    This could happen when a new file is created in the project tree with the
    same name as the existing file and then the application loses focus.
    
    This cancels editing of the filename (END_LABEL_EDIT), which shows a dialog
    to confirm overwriting of the existing file. When the dialog is shown,
    another event that cancels editing is generated (but in wxwidgets 2.9.5?),
    which causes two dialogs to be displayed, which leads to a crash after the
    second one is closed.
    
    The workaround moves the overwrite confirmation to the IDLE event.
    pkulchenko committed May 21, 2015

Commits on May 20, 2015

  1. Fixed crash in collectgarbage from the filetree on Linux (#425, #464).

    This appears to be a wxwidgets (2.9.5) issue and can be reproduced
    by doing the following:
    
    - Start editing a new item in the file tree;
    - Right click on the text control (while editing);
    - This opens a context menu and triggers ACTIVATE_APP event;
    - `collectgarbage` call from that event causes a crash.
    
    Switching garbage collection to ACTIVATE_APP event when the app becomes
    active eliminates the crash.
    pkulchenko committed May 20, 2015

Commits on May 16, 2015

  1. Updated AnalyzeString to add filename parameter (closes #463).

    This can be used to provide a filename that would then load proper spec
    for the file (to take known API descriptions into account).
    pkulchenko committed May 16, 2015
Older