mirror of
https://github.com/dynup/kpatch
synced 2025-04-04 23:29:23 +00:00
create-diff-object: null checks in rela_equal()
Make sure rela_toc(1|2) are not null before dereferencing them in rela_equal(). Found by covscan, see issue #984 for full log. Signed-off-by: Artem Savkov <asavkov@redhat.com>
This commit is contained in:
parent
d60579e8d4
commit
f367438b19
@ -373,6 +373,9 @@ static int rela_equal(struct rela *rela1, struct rela *rela2)
|
||||
if (!rela_toc1 && !rela_toc2)
|
||||
return toc_data1 == toc_data2;
|
||||
|
||||
if (!rela_toc1 || !rela_toc2)
|
||||
return 0;
|
||||
|
||||
if (rela_toc1->string)
|
||||
return rela_toc2->string && !strcmp(rela_toc1->string, rela_toc2->string);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user