Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
29 lines
1020 B
Diff
29 lines
1020 B
Diff
From af312f516e23521e1d03255263b22ef4b99761d5 Mon Sep 17 00:00:00 2001
|
|
From: Gabriele Barbero <barbero.gabriele03@gmail.com>
|
|
Date: Fri, 5 Dec 2025 19:13:01 +0100
|
|
Subject: [PATCH] ZDI-CAN-28158: use g_malloc0 instead of g_malloc
|
|
|
|
To avoid accessing uninitialized memory, replace calls to g_malloc with
|
|
g_malloc0 which initializes the allocated memory to zero.
|
|
|
|
CVE: CVE-2026-2044
|
|
Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/gimp/-/commit/112a5e038f0646eae5ae314988ec074433d2b365]
|
|
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
|
|
---
|
|
plug-ins/common/file-pnm.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/plug-ins/common/file-pnm.c b/plug-ins/common/file-pnm.c
|
|
index f514c2b..c82720c 100644
|
|
--- a/plug-ins/common/file-pnm.c
|
|
+++ b/plug-ins/common/file-pnm.c
|
|
@@ -571,7 +571,7 @@ load_image (GFile *file,
|
|
return -1;
|
|
|
|
/* allocate the necessary structures */
|
|
- pnminfo = g_new (PNMInfo, 1);
|
|
+ pnminfo = g_new0 (PNMInfo, 1);
|
|
|
|
scan = NULL;
|
|
/* set error handling */
|