-
Bug
-
Resolution: Fixed
-
P3
-
11, 13, 14
-
b17
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8245776 | 13.0.4 | Matthias Baesken | P3 | Resolved | Fixed | b03 |
JDK-8253972 | 11.0.10-oracle | Matthias Baesken | P3 | Resolved | Fixed | b01 |
JDK-8236403 | 11.0.7 | Matthias Baesken | P3 | Resolved | Fixed | b01 |
JDK-8293240 | 8u361 | Anton Litvinov | P3 | Resolved | Fixed | b01 |
ZALLOC is a macro using calloc, see :
jdk/src/java.desktop/unix/native/common/awt/awt_p.h
/* allocated and initialize a structure */
#define ZALLOC(T) ((struct T *)calloc(1, sizeof(struct T)))
so the return value has to be checked which is missing at some places.
jdk/src/java.desktop/unix/native/common/awt/awt_p.h
/* allocated and initialize a structure */
#define ZALLOC(T) ((struct T *)calloc(1, sizeof(struct T)))
so the return value has to be checked which is missing at some places.
- backported by
-
JDK-8236403 check ZALLOC return values in awt coding
-
- Resolved
-
-
JDK-8245776 check ZALLOC return values in awt coding
-
- Resolved
-
-
JDK-8253972 check ZALLOC return values in awt coding
-
- Resolved
-
-
JDK-8293240 check ZALLOC return values in awt coding
-
- Resolved
-