chiark / gitweb /
Do not print invalid UTF-8 in error messages
[elogind.git] / src / shared / sleep-config.c
index b9b6643066cc86773e83dbf2a5fde702f6ae4c10..cf1cd400e8fb281d0cb3149f8dc17f3154649333 100644 (file)
@@ -220,8 +220,8 @@ static int hibernation_partition_size(size_t *size, size_t *used) {
 
 static bool enough_memory_for_hibernation(void) {
         _cleanup_free_ char *active = NULL;
-        unsigned long long act;
-        size_t size, used;
+        unsigned long long act = 0;
+        size_t size = 0, used = 0;
         int r;
 
         r = hibernation_partition_size(&size, &used);