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 584895 Details for
Bug 821660
[abrt] autofs-5.0.6-16.fc17: clnt_dg_control: Process /usr/sbin/automount was killed by signal 11 (SIGSEGV)
[?]
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 - fix initialization in rpc create_client()
autofs-5.0.6-fix-initialization-in-rpc-create_client.patch (text/plain), 1.02 KB, created by
Ian Kent
on 2012-05-16 08:48:53 UTC
(
hide
)
Description:
Patch - fix initialization in rpc create_client()
Filename:
MIME Type:
Creator:
Ian Kent
Created:
2012-05-16 08:48:53 UTC
Size:
1.02 KB
patch
obsolete
>autofs-5.0.6 - fix initialization in rpc create_client() > >From: Ian Kent <ikent@redhat.com> > >Sometimes the RPC function create_client() function gets a >non-null stack variable passed in which can cause a SEGV. >Fix it by initializing the passed in variable. >--- > > lib/rpc_subs.c | 4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > >diff --git a/lib/rpc_subs.c b/lib/rpc_subs.c >index f051e43..85796d1 100644 >--- a/lib/rpc_subs.c >+++ b/lib/rpc_subs.c >@@ -316,6 +316,7 @@ static int create_client(struct conn_info *info, CLIENT **client) > int fd, ret; > > fd = RPC_ANYSOCK; >+ *client = NULL; > > if (info->client) { > if (!clnt_control(info->client, CLGET_FD, (char *) &fd)) { >@@ -377,12 +378,13 @@ static int create_client(struct conn_info *info, CLIENT **client) > > freeaddrinfo(ai); > >+done: > if (!*client) { > info->client = NULL; > ret = -ENOTCONN; > goto out_close; > } >-done: >+ > /* Close socket fd on destroy, as is default for rpcowned fds */ > if (!clnt_control(*client, CLSET_FD_CLOSE, NULL)) { > clnt_destroy(*client);
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 821660
:
584617
|
584618
|
584619
| 584895