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 291220 Details for
Bug 234298
scim-bridge crash on shutdown
[?]
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]
It's patch to fix this problem
scim-bridge-0.4.5-segfault-234298.patch (text/plain), 1.84 KB, created by
Peng Huang
on 2008-01-10 02:25:39 UTC
(
hide
)
Description:
It's patch to fix this problem
Filename:
MIME Type:
Creator:
Peng Huang
Created:
2008-01-10 02:25:39 UTC
Size:
1.84 KB
patch
obsolete
>diff -up scim-bridge-0.4.5/agent/scim-bridge-agent.cpp.segfault-412511 scim-bridge-0.4.5/agent/scim-bridge-agent.cpp >--- scim-bridge-0.4.5/agent/scim-bridge-agent.cpp.segfault-412511 2008-01-09 18:33:43.000000000 +0800 >+++ scim-bridge-0.4.5/agent/scim-bridge-agent.cpp 2008-01-09 18:36:00.000000000 +0800 >@@ -301,7 +301,7 @@ retval_t ScimBridgeAgentImpl::run_event_ > > scim_bridge_agent_event_type_t events = SCIM_BRIDGE_AGENT_EVENT_NONE; > >- if (FD_ISSET (socket_fd, &read_set) && (triggers & SCIM_BRIDGE_AGENT_EVENT_READ)) { >+ if (socket_fd >= 0 && FD_ISSET (socket_fd, &read_set) && (triggers & SCIM_BRIDGE_AGENT_EVENT_READ)) { > if (events == SCIM_BRIDGE_AGENT_EVENT_NONE) { > scim_bridge_pdebug (2, "Invoked triggers: READ"); > } else { >@@ -309,7 +309,7 @@ retval_t ScimBridgeAgentImpl::run_event_ > } > events |= SCIM_BRIDGE_AGENT_EVENT_READ; > } >- if (FD_ISSET (socket_fd, &write_set) && (triggers & SCIM_BRIDGE_AGENT_EVENT_WRITE)) { >+ if (socket_fd >= 0 && FD_ISSET (socket_fd, &write_set) && (triggers & SCIM_BRIDGE_AGENT_EVENT_WRITE)) { > if (events == SCIM_BRIDGE_AGENT_EVENT_NONE) { > scim_bridge_pdebug (2, "Invoked triggers: WRITE"); > } else { >@@ -317,7 +317,7 @@ retval_t ScimBridgeAgentImpl::run_event_ > } > events |= SCIM_BRIDGE_AGENT_EVENT_WRITE; > } >- if (FD_ISSET (socket_fd, &error_set) && (triggers & SCIM_BRIDGE_AGENT_EVENT_ERROR)) { >+ if (socket_fd >= 0 && FD_ISSET (socket_fd, &error_set) && (triggers & SCIM_BRIDGE_AGENT_EVENT_ERROR)) { > if (events == SCIM_BRIDGE_AGENT_EVENT_NONE) { > scim_bridge_pdebug (2, "Invoked triggers: ERROR"); > } else {
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 234298
:
151105
| 291220