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 145255 Details for
Bug 217568
evolution send mail hangs after evolution has been running for more than an hour; then hangs when trying to exit.
[?]
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]
Fix for EMsgPort race
evolution-data-server-1.8.0-msgport-fix.patch (text/plain), 1.23 KB, created by
Alexander Larsson
on 2007-01-10 14:09:18 UTC
(
hide
)
Description:
Fix for EMsgPort race
Filename:
MIME Type:
Creator:
Alexander Larsson
Created:
2007-01-10 14:09:18 UTC
Size:
1.23 KB
patch
obsolete
>--- evolution-data-server-1.8.0/libedataserver/e-msgport.c.msgport 2007-01-10 14:54:21.000000000 +0100 >+++ evolution-data-server-1.8.0/libedataserver/e-msgport.c 2007-01-10 14:56:06.000000000 +0100 >@@ -487,7 +487,7 @@ > > struct _EMsgPort { > GAsyncQueue *queue; >- EMsg *cache; >+ GSList *cache; > gint pipe[2]; /* on Win32, actually a pair of SOCKETs */ > #ifdef HAVE_NSS > PRFileDesc *prpipe[2]; >@@ -685,7 +685,7 @@ > > /* check the cache first */ > if (msgport->cache != NULL) { >- msg = msgport->cache; >+ msg = msgport->cache->data; > /* don't clear the cache */ > g_async_queue_unlock (msgport->queue); > return msg; >@@ -697,7 +697,7 @@ > > /* The message is not actually "removed" from the EMsgPort until > * e_msgport_get() is called. So we cache the popped message. */ >- msgport->cache = msg; >+ msgport->cache = g_slist_append (msgport->cache, msg); > > if (msg->flags & MSG_FLAG_SYNC_WITH_PIPE) > msgport_sync_with_pipe (msgport->pipe[0]); >@@ -722,8 +722,8 @@ > > /* check the cache first */ > if (msgport->cache != NULL) { >- msg = msgport->cache; >- msgport->cache = NULL; >+ msg = msgport->cache->data; >+ msgport->cache = g_slist_delete_link (msgport->cache, msgport->cache); > g_async_queue_unlock (msgport->queue); > return msg; > }
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 217568
:
142312
| 145255