mirror of
https://github.com/systemd/systemd.git
synced 2025-01-07 21:18:41 +03:00
Merge pull request #18040 from mrc0mmand/cryptenroll-unused-variable
cryptenroll: drop an unused variable
This commit is contained in:
commit
94d982bb6a
1
.github/workflows/ubuntu-build-check.sh
vendored
1
.github/workflows/ubuntu-build-check.sh
vendored
@ -37,6 +37,7 @@ PACKAGES=(
|
||||
libpwquality-dev
|
||||
libqrencode-dev
|
||||
libssl-dev
|
||||
libtss2-dev
|
||||
libxkbcommon-dev
|
||||
libxtables-dev
|
||||
libzstd-dev
|
||||
|
@ -61,7 +61,7 @@ int enroll_tpm2(struct crypt_device *cd,
|
||||
uint32_t pcr_mask) {
|
||||
|
||||
_cleanup_(erase_and_freep) void *secret = NULL, *secret2 = NULL;
|
||||
_cleanup_(json_variant_unrefp) JsonVariant *v = NULL, *a = NULL;
|
||||
_cleanup_(json_variant_unrefp) JsonVariant *v = NULL;
|
||||
_cleanup_(erase_and_freep) char *base64_encoded = NULL;
|
||||
size_t secret_size, secret2_size, blob_size, hash_size;
|
||||
_cleanup_free_ void *blob = NULL, *hash = NULL;
|
||||
|
@ -19,9 +19,12 @@ ADDITIONAL_DEPS=(
|
||||
clang
|
||||
fdisk
|
||||
libfdisk-dev
|
||||
libfido2-dev
|
||||
libp11-kit-dev
|
||||
libpwquality-dev
|
||||
libqrencode-dev
|
||||
libssl-dev
|
||||
libtss2-dev
|
||||
libzstd-dev
|
||||
perl
|
||||
python3-libevdev
|
||||
|
@ -33,6 +33,7 @@ ADDITIONAL_DEPS=(
|
||||
perl
|
||||
python3-evdev
|
||||
python3-pyparsing
|
||||
tpm2-tss-devel
|
||||
)
|
||||
|
||||
info() {
|
||||
|
Loading…
Reference in New Issue
Block a user