Bug 2242593
| Summary: | [abrt] anjuta: iassist_remove(): anjuta killed by SIGSEGV | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | rvcsaba | ||||||||||||||||||||||||||
| Component: | anjuta | Assignee: | Gwyn Ciesla <gwync> | ||||||||||||||||||||||||||
| Status: | CLOSED EOL | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||||||||||||||||||||||||
| Severity: | unspecified | Docs Contact: | |||||||||||||||||||||||||||
| Priority: | unspecified | ||||||||||||||||||||||||||||
| Version: | 39 | CC: | gwync, hmmsjan, klember, rvcsaba | ||||||||||||||||||||||||||
| Target Milestone: | --- | ||||||||||||||||||||||||||||
| Target Release: | --- | ||||||||||||||||||||||||||||
| Hardware: | x86_64 | ||||||||||||||||||||||||||||
| OS: | Unspecified | ||||||||||||||||||||||||||||
| URL: | https://retrace.fedoraproject.org/faf/reports/bthash/327f3fb570e1a81dd632560a9edfb1c20831db3 | ||||||||||||||||||||||||||||
| Whiteboard: | abrt_hash:cc9d1a873663f4d968428a5e70d099db3dd4dc57;VARIANT_ID=; | ||||||||||||||||||||||||||||
| Fixed In Version: | Doc Type: | --- | |||||||||||||||||||||||||||
| Doc Text: | Story Points: | --- | |||||||||||||||||||||||||||
| Clone Of: | Environment: | ||||||||||||||||||||||||||||
| Last Closed: | 2024-11-27 21:34:05 UTC | Type: | --- | ||||||||||||||||||||||||||
| Regression: | --- | Mount Type: | --- | ||||||||||||||||||||||||||
| Documentation: | --- | CRM: | |||||||||||||||||||||||||||
| Verified Versions: | Category: | --- | |||||||||||||||||||||||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||||||||||||||||||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||||||||||||||||||||||
| Embargoed: | |||||||||||||||||||||||||||||
| Attachments: |
|
||||||||||||||||||||||||||||
|
Description
rvcsaba
2023-10-07 08:03:58 UTC
Created attachment 1992621 [details]
File: mountinfo
Created attachment 1992622 [details]
File: backtrace
Created attachment 1992623 [details]
File: open_fds
Created attachment 1992624 [details]
File: cpuinfo
Created attachment 1992625 [details]
File: exploitable
Created attachment 1992626 [details]
File: core_backtrace
Created attachment 1992627 [details]
File: maps
Created attachment 1992628 [details]
File: os_info
Created attachment 1992629 [details]
File: dso_list
Created attachment 1992630 [details]
File: environ
Created attachment 1992631 [details]
File: proc_pid_status
Created attachment 1992632 [details]
File: limits
Problem can be solved by:
cat anjuta-sourceview.patch
--- plugins/sourceview/sourceview.c.orig 2023-10-15 07:35:16.837377713 +0200
+++ plugins/sourceview/sourceview.c 2023-10-15 07:35:28.773153316 +0200
@@ -2356,7 +2356,7 @@
Sourceview* sv = ANJUTA_SOURCEVIEW(iassist);
GtkSourceCompletion* completion = gtk_source_view_get_completion(GTK_SOURCE_VIEW(sv->priv->view));
GList* node;
- for (node = gtk_source_completion_get_providers(completion); node != NULL; node = g_list_next(node))
+ for (node = g_list_copy(gtk_source_completion_get_providers(completion)); node != NULL; node = g_list_next(node))
{
SourceviewProvider* prov;
if (!SOURCEVIEW_IS_PROVIDER(node->data))
The list "node" gets destroyed while being used.
You build anjuta-3.34.0-21.fc39 with this patch? (In reply to H.Janssen from comment #13) > Problem can be solved by: Yes, indeed. The source code editor works fine after this patch. Did not try yet to free the copied list afterwards, so may be introduced a small memory leak. Fedora Linux 39 entered end-of-life (EOL) status on 2024-11-26. Fedora Linux 39 is no longer maintained, which means that it will not receive any further security or bug fix updates. As a result we are closing this bug. If you can reproduce this bug against a currently maintained version of Fedora Linux please feel free to reopen this bug against that version. Note that the version field may be hidden. Click the "Show advanced fields" button if you do not see the version field. If you are unable to reopen this bug, please file a new report against an active release. Thank you for reporting this bug and we are sorry it could not be fixed. |