Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
59633c73
T
Third Party Musl
项目概览
OpenHarmony
/
Third Party Musl
大约 1 年 前同步成功
通知
37
Star
125
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Musl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
59633c73
编写于
6月 25, 2011
作者:
R
Rich Felker
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix possible (questionable) strict aliasing violations and ptr arith
上级
4d95a585
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
3 addition
and
3 deletion
+3
-3
src/ldso/dynlink.c
src/ldso/dynlink.c
+3
-3
未找到文件。
src/ldso/dynlink.c
浏览文件 @
59633c73
...
...
@@ -123,7 +123,7 @@ static void do_relocs(unsigned char *base, size_t *rel, size_t rel_size, size_t
static
void
*
map_library
(
int
fd
,
size_t
*
lenp
,
unsigned
char
**
basep
,
size_t
*
dynp
)
{
size_t
buf
[
896
/
sizeof
(
size_t
)];
Ehdr
buf
[(
896
+
sizeof
(
Ehdr
))
/
sizeof
(
Ehdr
)];
size_t
phsize
;
size_t
addr_min
=
SIZE_MAX
,
addr_max
=
0
,
map_len
;
size_t
this_min
,
this_max
;
...
...
@@ -137,11 +137,11 @@ static void *map_library(int fd, size_t *lenp, unsigned char **basep, size_t *dy
ssize_t
l
=
read
(
fd
,
buf
,
sizeof
buf
);
if
(
l
<
sizeof
*
eh
)
return
0
;
eh
=
(
void
*
)
buf
;
eh
=
buf
;
phsize
=
eh
->
e_phentsize
*
eh
->
e_phnum
;
if
(
phsize
+
sizeof
*
eh
>
l
)
return
0
;
if
(
eh
->
e_phoff
+
phsize
>
l
)
{
l
=
pread
(
fd
,
buf
+
sizeof
*
eh
,
phsize
,
eh
->
e_phoff
);
l
=
pread
(
fd
,
buf
+
1
,
phsize
,
eh
->
e_phoff
);
if
(
l
!=
phsize
)
return
0
;
eh
->
e_phoff
=
sizeof
*
eh
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录