mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-03 09:00:21 +00:00
Avoid NULL deference.
Reviewed by: ivoras
This commit is contained in:
parent
345f9e9dc7
commit
6c97c325ff
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=180120
@ -225,6 +225,11 @@ virstor_ctl_stop(struct gctl_req *req, struct g_class *cp)
|
||||
|
||||
sprintf(param, "arg%d", i);
|
||||
name = gctl_get_asciiparam(req, param);
|
||||
if (name == NULL) {
|
||||
gctl_error(req, "No 'arg%d' argument", i);
|
||||
g_topology_unlock();
|
||||
return;
|
||||
}
|
||||
sc = virstor_find_geom(cp, name);
|
||||
LOG_MSG(LVL_INFO, "Stopping %s by the userland command",
|
||||
sc->geom->name);
|
||||
|
Loading…
Reference in New Issue
Block a user