Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 156545 Details for
Bug 241925
GSlice: g_thread_init() must be called first before all other GLib functions; memory corruption detected
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch to compat-wxGTK26 to make this problem go away, sort of
diff (text/plain), 1.33 KB, created by
Jonathan Kamens
on 2007-06-08 04:51:28 UTC
(
hide
)
Description:
patch to compat-wxGTK26 to make this problem go away, sort of
Filename:
MIME Type:
Creator:
Jonathan Kamens
Created:
2007-06-08 04:51:28 UTC
Size:
1.33 KB
patch
obsolete
>--- app.cpp.old 2006-03-21 18:42:16.000000000 -0500 >+++ app.cpp 2007-06-07 22:44:27.000000000 -0400 >@@ -442,12 +442,26 @@ > > m_idleTag = 0; > g_isIdle = TRUE; >- wxapp_install_idle_handler(); > > #if wxUSE_THREADS >+ // GTK 1.2 up to version 1.2.3 has broken threads >+ if ((gtk_major_version == 1) && >+ (gtk_minor_version == 2) && >+ (gtk_micro_version < 4)) >+ { >+ printf( "wxWidgets warning: GUI threading disabled due to outdated GTK version\n" ); >+ } >+ else >+ { >+ if (!g_thread_supported()) >+ g_thread_init(NULL); >+ } >+ > g_main_set_poll_func( wxapp_poll_func ); > #endif > >+ wxapp_install_idle_handler(); >+ > m_colorCube = (unsigned char*) NULL; > > // this is NULL for a "regular" wxApp, but is set (and freed) by a wxGLApp >@@ -580,21 +594,6 @@ > { > bool init_result; > >-#if wxUSE_THREADS >- // GTK 1.2 up to version 1.2.3 has broken threads >- if ((gtk_major_version == 1) && >- (gtk_minor_version == 2) && >- (gtk_micro_version < 4)) >- { >- printf( "wxWidgets warning: GUI threading disabled due to outdated GTK version\n" ); >- } >- else >- { >- if (!g_thread_supported()) >- g_thread_init(NULL); >- } >-#endif // wxUSE_THREADS >- > gtk_set_locale(); > > // We should have the wxUSE_WCHAR_T test on the _outside_
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 241925
:
155908
| 156545