提交 4674686d 编写于 作者: Y yzhai003@ucr.edu 提交者: Joerg Roedel

iommu/amd: Argument page_size could be uninitialized

Argument "page_size" passing to function "fetch_pte" could be
uninitialized if the function returns NULL

The caller "iommu_unmap_page" checks the return value but the page_size is
used outside the if block.
Signed-off-by: Nyzhai003@ucr.edu <yzhai003@ucr.edu>
Signed-off-by: NJoerg Roedel <jroedel@suse.de>
上级 021c9179
...@@ -1404,6 +1404,8 @@ static u64 *fetch_pte(struct protection_domain *domain, ...@@ -1404,6 +1404,8 @@ static u64 *fetch_pte(struct protection_domain *domain,
int level; int level;
u64 *pte; u64 *pte;
*page_size = 0;
if (address > PM_LEVEL_SIZE(domain->mode)) if (address > PM_LEVEL_SIZE(domain->mode))
return NULL; return NULL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册