mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
conf: don't allow a NULL config name
No functional changes, this is enforced by the only in-tree callers of pw_conf_load_conf() but let's enforce this properly.
This commit is contained in:
parent
fb2d35895e
commit
bba9edabee
2 changed files with 22 additions and 2 deletions
|
|
@ -254,6 +254,11 @@ static int conf_load(const char *prefix, const char *name, struct pw_properties
|
|||
struct stat sbuf;
|
||||
int fd;
|
||||
|
||||
if (name == NULL) {
|
||||
pw_log_debug(NAME" %p: config name must not be NULL", conf);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (get_read_path(path, sizeof(path), prefix, name) == 0) {
|
||||
pw_log_debug(NAME" %p: can't load config '%s': %m", conf, path);
|
||||
return -ENOENT;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue