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 295554 Details for
Bug 433857
rpc.mountd segfaults due to uninitialized value in e2fsprogs devname.c [PATCH]
[?]
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 fix the potentially uninitialized reference to info.exists.
e2fsprogs-segfault.patch (text/plain), 399 bytes, created by
Philip Spencer
on 2008-02-21 19:52:14 UTC
(
hide
)
Description:
Patch to fix the potentially uninitialized reference to info.exists.
Filename:
MIME Type:
Creator:
Philip Spencer
Created:
2008-02-21 19:52:14 UTC
Size:
399 bytes
patch
obsolete
>--- e2fsprogs-1.40.4/lib/blkid/devname.c.orig 2007-12-17 13:46:07.000000000 -0500 >+++ e2fsprogs-1.40.4/lib/blkid/devname.c 2008-02-21 14:27:11.000000000 -0500 >@@ -176,9 +176,9 @@ > > dm_task_set_name(task, name); > dm_task_run(task); >- dm_task_get_info(task, &info); >+ i = dm_task_get_info(task, &info); > >- if (!info.exists) { >+ if (!i || !info.exists) { > dm_task_destroy(task); > return 0; > }
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 433857
:
295554
|
295566