summaryrefslogtreecommitdiff
path: root/src/home/homework-password-cache.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/home/homework-password-cache.c')
-rw-r--r--src/home/homework-password-cache.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/home/homework-password-cache.c b/src/home/homework-password-cache.c
new file mode 100644
index 0000000000..87d90c9184
--- /dev/null
+++ b/src/home/homework-password-cache.c
@@ -0,0 +1,11 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+
+#include "homework-password-cache.h"
+
+void password_cache_free(PasswordCache *cache) {
+ if (!cache)
+ return;
+
+ cache->pkcs11_passwords = strv_free_erase(cache->pkcs11_passwords);
+ cache->fido2_passwords = strv_free_erase(cache->fido2_passwords);
+}