-
Bug
-
Resolution: Fixed
-
P3
-
7
-
b121
-
generic
-
generic
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2213887 | 6u30 | Sean Coffey | P4 | Closed | Fixed | b08 |
JDK-2213861 | 6u29-rev | Sean Coffey | P4 | Resolved | Fixed | b20 |
JDK-2212167 | 6u27-rev | Sean Coffey | P4 | Resolved | Fixed | b22 |
JDK-2212168 | 5.0u33 | Sean Coffey | P4 | Closed | Fixed | b08 |
Hi all,
I've found a problem in the Deflater code in OpenJDK, where a length of zero bytes is passed to malloc.
According to the specs, malloc may return either a valid pointer that can be passed to free, or NULL, while generally NULL is considered to be a failure. Linux and Solaris, albeit non specifying it, return always a valid pointer, as far as I know, but I have a weird OS here that does indeed return NULL.
I've fixed this issue locally, and thought I could share the patch with you:
http://cr.openjdk.java.net/~neugens/deflater/webrev.00/
Cheers,
Mario
I've found a problem in the Deflater code in OpenJDK, where a length of zero bytes is passed to malloc.
According to the specs, malloc may return either a valid pointer that can be passed to free, or NULL, while generally NULL is considered to be a failure. Linux and Solaris, albeit non specifying it, return always a valid pointer, as far as I know, but I have a weird OS here that does indeed return NULL.
I've fixed this issue locally, and thought I could share the patch with you:
http://cr.openjdk.java.net/~neugens/deflater/webrev.00/
Cheers,
Mario
- backported by
-
JDK-2212167 Fix for 6728376 causes regression if the size of "data" is 0 and malloc returns Null for 0-length
-
- Resolved
-
-
JDK-2213861 Fix for 6728376 causes regression if the size of "data" is 0 and malloc returns Null for 0-length
-
- Resolved
-
-
JDK-2212168 Fix for 6728376 causes regression if the size of "data" is 0 and malloc returns Null for 0-length
-
- Closed
-
-
JDK-2213887 Fix for 6728376 causes regression if the size of "data" is 0 and malloc returns Null for 0-length
-
- Closed
-