User forums > Nightly builds

The 18 February 2023 build (13215) is out.

<< < (2/5) > >>

Pecan:

--- Quote from: stahta01 on February 23, 2023, 06:33:06 am ---Can anyone edit a project source file and then click on the save button without CB crashing?

Note: The auto save when building seems to still work.

Windows 10

Tim S.

--- End quote ---
No problem here with saving a modified source file Windows 11, this nightly.

Miguel Gimenez:
It has crashed twice today for me, one at home and other at work. It happens when closing the project, no saving involved.

Looks like it is related to BrowseTracker, (truncated) codeblocks.RPT contents:

--- Code: ---Error occurred on Thursday, February 23, 2023 at 15:06:48.

codeblocks.exe caused an Access Violation at location 6A3D0F84 in module codeblocks.dll Reading from location 0000021C.

Registers:
eax=00000000 ebx=0028dc9c ecx=00000000 edx=036e1af0 esi=02232258 edi=06373200
eip=6a3d0f84 esp=0028dbdc ebp=0028dc14 iopl=0         nv up ei pl nz ac pe nc
cs=0023  ss=002b  ds=002b  es=002b  fs=0053  gs=002b             efl=00210212

AddrPC   Params
6A3D0F84 0CA80CE8 00000135 06525100  codeblocks.dll!cbEditor::GetControl+0xc
6C6A3101 0028DDD0 0028DE14 0028DCE4  BrowseTracker.dll!0x23101
6C6AC9E4 0028DDD0 0028DD28 00000000  BrowseTracker.dll!0x2c9e4
6A4C411B 0028DDD0 06373200 0028DD64  codeblocks.dll!Manager::ProcessEvent+0xcb
6A4E3143 0028DDD0 FFFFFFFF 00000000  codeblocks.dll!PluginManager::NotifyPlugins+0x1d
6A481A98 0028E100 07F5A597 FFFFFFFE  codeblocks.dll!EditorManager::OnPageChanging+0x142
6FF831F2 0028DEEC 00000001 6FF83947  wxmsw32u_gcc_custom.dll!wxAppConsoleBase::HandleEvent+0x22
702A030D 036E1AF4 6A481956 FFFFFFFC  wxmsw32u_gcc_custom.dll!wxWindow::MSWDefWindowProc+0x9d
6FF83947 036E1AF4 02212F80 0028E100  wxmsw32u_gcc_custom.dll!wxAppConsoleBase::CallEventHandler+0x37
7014212E 6A91719C 036E1AF4 0028E100  wxmsw32u_gcc_custom.dll!wxEvtHandler::ProcessEventIfMatchesId+0x6e
701422DA 00000005 00000001 0028F9F8  wxmsw32u_gcc_custom.dll!wxEventHashTable::HandleEvent+0xca
7086F10A 7087620F 00000005 00000000  wxmsw32u_gcc_custom.dll!wxAuiNotebook::SetSelection+0x1a
74FC98DA 00000003 70D92960 70F60E1E  msvcrt.dll!_free+0xec
70DA9F0E 00000000 00000000 00000000  wxmsw32u_gcc_custom.dll!wxCheckDynamicCast+0x1e
70875C8B 068098C8 0028E2D0 00000005  wxmsw32u_gcc_custom.dll!wxAuiTabContainer::DoShowHide+0xfb
7087B0EB 00000005 068098C8 0028E478  wxmsw32u_gcc_custom.dll!wxAuiNotebook::InsertPage+0x25b
7087B2B7 068098C8 0028E478 00000001  wxmsw32u_gcc_custom.dll!wxAuiNotebook::AddPage+0x47
6A47B22F 068098C8 0028EDCC 0028E4E4  codeblocks.dll!EditorManager::AddEditorBase+0x11d
6A47B0DF 068098C8 FFFFFF00 71220B00  codeblocks.dll!EditorManager::AddCustomEditor+0x19
6A466F5D 06395248 0028EA88 00000001  codeblocks.dll!EditorBase::EditorBase+0x1c3
00500AB9 0372BD48 0372C128 0372C0DC  codeblocks.exe!0x100ab9
0049043A 00000000 00000000 0028EF54  codeblocks.exe!0x9043a
004A2A20 0028F04C 0028F090 0028EF54  codeblocks.exe!0xa2a20
00533110 0028F04C 0028EF98 0028EFBC  codeblocks.exe!0x133110
6A4C411B 0028F04C 02C63248 0028EFD4  codeblocks.dll!Manager::ProcessEvent+0xcb
6A4E3143 0028F04C 00000000 00000000  codeblocks.dll!PluginManager::NotifyPlugins+0x1d
6A50E0A0 04E2A3F0 00000001 00000000  codeblocks.dll!ProjectManager::CloseProject+0x296
6A50DAE0 00000001 00000000 00000000  codeblocks.dll!ProjectManager::CloseAllProjects+0x13a
6A50EBFB 00000001 04959698 0028F474  codeblocks.dll!ProjectManager::CloseWorkspace+0x153

--- End code ---

Miguel Gimenez:
[r13210] introduced two calls to cbEditor::GetControl() without checking pointer validity:

--- Code: ---if (inFilename == jdFilename)
{
    int jdLineNo = 0;
    cbEditor* pEd = Manager::Get()->GetEditorManager()->GetBuiltinActiveEditor();
    jdLineNo = pEd->GetControl()->LineFromPosition(jdPosn);
    if (jdLineNo == inLineNum)
        return;
}

--- End code ---
and

--- Code: ---cbEditor* pcbEd = Manager::Get()->GetEditorManager()->GetBuiltinEditor(pEdBase);

cbStyledTextCtrl* pControl = pcbEd->GetControl();

--- End code ---

UberNewb2:
Hi! When using code completion for my library code the window that displays the suggestion for code completion is too small on the right side and cuts off the text. This is since 20.03. -I just tried out- This is with 13215, and it also hung once but I can't reproduce. thanks CB team

UberNewb2

Miguel Gimenez:
Are you using HiDPI?. Try using 100% zoom factor, or changing the technology (in Settings -> Editor -> General settings -> Other editor settings -> Technology) to DirectWrite.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version