diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2022-05-19 00:44:31 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-05-19 15:39:25 +0900 |
commit | 1751d8c80cef40777b782c737947b4e86d99e7d6 (patch) | |
tree | 0acf01d6e9f84246296a4bf3d367e8055265f142 | |
parent | 7269d39a911800443fa6801eb30e080db6089f5e (diff) | |
download | systemd-1751d8c80cef40777b782c737947b4e86d99e7d6.tar.gz |
portable: Remove unnecessary assert()
Fixes #23433
matches is plumbed through until it finally gets used in unit_match()
which can deal with NULL matches so the assert() is unnecessary and
can be removed.
The two call sites of extract_image_and_extensions() also don't
assert() on matches either.
-rw-r--r-- | src/portable/portable.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/portable/portable.c b/src/portable/portable.c index 7bba7b47e4..2191d6c653 100644 --- a/src/portable/portable.c +++ b/src/portable/portable.c @@ -530,7 +530,6 @@ static int extract_image_and_extensions( int r; assert(name_or_path); - assert(matches); r = image_find_harder(IMAGE_PORTABLE, name_or_path, NULL, &image); if (r < 0) |