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 631741 Details for
Bug 869040
CVE-2012-4540 icedtea-web: IcedTeaScriptableJavaObject::invoke off-by-one heap-based buffer overflow
[?]
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]
proposed patch
MOZ756792.patch (text/plain), 690 bytes, created by
Vincent Danen
on 2012-10-22 21:08:13 UTC
(
hide
)
Description:
proposed patch
Filename:
MIME Type:
Creator:
Vincent Danen
Created:
2012-10-22 21:08:13 UTC
Size:
690 bytes
patch
obsolete
>diff -r 6e622e87010e plugin/icedteanp/IcedTeaScriptablePluginObject.cc >--- a/plugin/icedteanp/IcedTeaScriptablePluginObject.cc Tue Oct 16 17:18:52 2012 -0400 >+++ b/plugin/icedteanp/IcedTeaScriptablePluginObject.cc Thu Oct 18 13:46:19 2012 -0400 >@@ -592,7 +592,7 @@ > if (java_result->error_occurred) > { > // error message must be allocated on heap >- char* error_msg = (char*) malloc(java_result->error_msg->length()*sizeof(char)); >+ char* error_msg = (char*) malloc(java_result->error_msg->length()*sizeof(char) + 1); > strcpy(error_msg, java_result->error_msg->c_str()); > browser_functions.setexception(npobj, error_msg); > return false; >
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 869040
:
631741
|
635041
|
636971
|
636984