summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
d78bf25)
This is a fairly useless thing to do but it makes the compilers
and analyzers shut up about the use of mktemp.
+ fd = mkstemp(p);
+ assert_se(fd >= 0);
+ close(fd);
fd = mkostemp(t, O_CLOEXEC);
assert_se(fd >= 0);
fd = mkostemp(t, O_CLOEXEC);
assert_se(fd >= 0);
_cleanup_strv_free_ char **a = NULL, **b = NULL;
char **i;
_cleanup_strv_free_ char **a = NULL, **b = NULL;
char **i;
+ fd = mkstemp(p);
+ assert_se(fd >= 0);
+ close(fd);
fd = mkostemp(t, O_CLOEXEC);
assert_se(fd >= 0);
fd = mkostemp(t, O_CLOEXEC);
assert_se(fd >= 0);