1 Star 0 Fork 22

zhaohui/third_party_cups

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
backport-CVE-2023-4504.patch 593 Bytes
一键复制 编辑 原始数据 按行查看 历史
diff --git a/cups/raster-interpret.c b/cups/raster-interpret.c
index fbe52f37..c24388d2 100644
--- a/cups/raster-interpret.c
+++ b/cups/raster-interpret.c
@@ -1113,7 +1113,19 @@ scan_ps(_cups_ps_stack_t *st, /* I - Stack */
cur ++;
- if (*cur == 'b')
+ /*
+ * Return NULL if we reached NULL terminator, a lone backslash
+ * is not a valid character in PostScript.
+ */
+
+ if (!*cur)
+ {
+ *ptr = NULL;
+
+ return (NULL);
+ }
+
+ if (*cur == 'b')
*valptr++ = '\b';
else if (*cur == 'f')
*valptr++ = '\f';
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhaohuigis/third_party_cups.git
git@gitee.com:zhaohuigis/third_party_cups.git
zhaohuigis
third_party_cups
third_party_cups
master

搜索帮助