/* This is much like mkostemp() but is subject to umask(). */
int mkostemp_safe(char *pattern) {
- int fd = -1; /* avoid false maybe-uninitialized warning */
+ int fd = -1; /* avoid false maybe-uninitialized warning */
assert(pattern);
_cleanup_(sd_event_unrefp) sd_event *event = NULL;
_cleanup_free_ char *friendly = NULL;
int keyslot = arg_key_slot, r;
- size_t decrypted_key_size = 0; /* Silence gcc warning about unitialized variable */
+ size_t decrypted_key_size = 0; /* avoid false maybe-uninitialized warning */
assert(cd);
assert(name);