* src/main.c (save_hsts): Free hsts_store after closing

This commit is contained in:
Tim Rühsen 2018-04-15 22:03:27 +02:00
parent 79385a29fd
commit 15ef79f808

View File

@ -227,6 +227,7 @@ save_hsts (void)
} }
hsts_store_close (hsts_store); hsts_store_close (hsts_store);
xfree (hsts_store);
xfree (filename); xfree (filename);
} }