加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
backport-Fix-potential-integer-overflow.patch 782 Bytes
一键复制 编辑 原始数据 按行查看 历史
jinlun 提交于 2024-04-16 10:12 . backport some patches
From f298f9aaef28f5846b746e1c9596ad9d8c85b155 Mon Sep 17 00:00:00 2001
From: Huaxin Lu <luhuaxin1@huawei.com>
Date: Mon, 19 Feb 2024 10:01:41 +0800
Subject: [PATCH 19/26] Fix potential integer overflow
---
src/core/tasks/dim_core_measure_kernel.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/core/tasks/dim_core_measure_kernel.c b/src/core/tasks/dim_core_measure_kernel.c
index d49095b..077f30a 100644
--- a/src/core/tasks/dim_core_measure_kernel.c
+++ b/src/core/tasks/dim_core_measure_kernel.c
@@ -21,7 +21,7 @@
static int code_cmp(const void *a, const void *b)
{
- return *(unsigned long *)a - *(unsigned long *)b;
+ return *(unsigned long *)a > *(unsigned long *)b ? 1 : 0;
}
static int sort_jump_table(struct jump_entry *sjump,
--
2.33.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化