mirror of
https://github.com/systemd/systemd.git
synced 2024-11-08 11:27:32 +03:00
tree-wide: do not use _cleanup_free_ on const pointers
free() cannot be used with const pointers. However, our _cleanup_free_ handler features cast logic that hides that qualifier, so we don't get a warning.
This commit is contained in:
parent
95cdf5e3a9
commit
45d9a30414
@ -793,7 +793,7 @@ static void dkr_pull_job_on_finished_v2(PullJob *j) {
|
||||
|
||||
} else if (i->tags_job == j) {
|
||||
const char *url;
|
||||
_cleanup_free_ const char *buf;
|
||||
_cleanup_free_ char *buf;
|
||||
_cleanup_json_variant_unref_ JsonVariant *doc = NULL;
|
||||
JsonVariant *e = NULL;
|
||||
|
||||
|
@ -72,7 +72,7 @@ static void patch_realtime(
|
||||
const struct stat *st,
|
||||
unsigned long long *realtime) {
|
||||
|
||||
_cleanup_free_ const char *path = NULL;
|
||||
_cleanup_free_ char *path = NULL;
|
||||
usec_t x, crtime = 0;
|
||||
|
||||
/* The timestamp was determined by the file name, but let's
|
||||
|
@ -33,7 +33,7 @@ static sd_hwdb *hwdb;
|
||||
int udev_builtin_hwdb_lookup(struct udev_device *dev,
|
||||
const char *prefix, const char *modalias,
|
||||
const char *filter, bool test) {
|
||||
_cleanup_free_ const char *lookup = NULL;
|
||||
_cleanup_free_ char *lookup = NULL;
|
||||
const char *key, *value;
|
||||
int n = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user