pulse-server: module arguments can be NULL

This commit is contained in:
Wim Taymans 2021-04-01 08:24:22 +02:00
parent e7b04bca2c
commit 8383e86f33
2 changed files with 3 additions and 7 deletions

View file

@ -217,7 +217,7 @@ static struct module *create_module(struct client *client, const char *name, con
return NULL;
}
module->name = strdup(name);
module->args = strdup(args);
module->args = args ? strdup(args) : NULL;
module->idx |= MODULE_FLAG;
return module;
}