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 644660 Details for
Bug 871612
CVE-2012-4559 CVE-2012-6063 libssh: multiple double free() flaws
[?]
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]
CVE-2012-4559-Ensure-that-we-don-t-free-req-twice.patch
0008-CVE-2012-4559-Ensure-that-we-don-t-free-req-twice.patch (text/plain), 1.01 KB, created by
Andreas Schneider
on 2012-11-14 08:48:57 UTC
(
hide
)
Description:
CVE-2012-4559-Ensure-that-we-don-t-free-req-twice.patch
Filename:
MIME Type:
Creator:
Andreas Schneider
Created:
2012-11-14 08:48:57 UTC
Size:
1.01 KB
patch
obsolete
>From c68f6d26af4b1426f6f8abbfbeff67a5aa6fa476 Mon Sep 17 00:00:00 2001 >From: Andreas Schneider <asn@cryptomilk.org> >Date: Fri, 5 Oct 2012 14:39:51 +0200 >Subject: [PATCH 08/11] CVE-2012-4559: Ensure that we don't free req twice. > > >Signed-off-by: Andreas Schneider <asn@cryptomilk.org> >--- > src/channels.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/src/channels.c b/src/channels.c >index ad989d7..214485c 100644 >--- a/src/channels.c >+++ b/src/channels.c >@@ -1417,6 +1417,7 @@ static int channel_request(ssh_channel channel, const char *request, > buffer_add_ssh_string(session->out_buffer, req) < 0 || > buffer_add_u8(session->out_buffer, reply == 0 ? 0 : 1) < 0) { > ssh_set_error_oom(session); >+ ssh_string_free(req); > goto error; > } > ssh_string_free(req); >@@ -1476,7 +1477,6 @@ static int channel_request(ssh_channel channel, const char *request, > return rc; > error: > buffer_reinit(session->out_buffer); >- ssh_string_free(req); > > leave_function(); > return rc; >-- >1.8.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 871612
:
644659
|
644660
|
644661
|
644984
|
644985
|
644986