mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 19:33:39 +08:00
don't use 'Yoda conditions'
imitate nearby code about using '!value' or 'value == NULL' Signed-off-by: Gonglei <arei.gonglei@huawei.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
337a3e5c7d
commit
8108fd3e26
@ -694,7 +694,7 @@ void qmp_device_del(const char *id, Error **errp)
|
||||
DeviceState *dev;
|
||||
|
||||
dev = qdev_find_recursive(sysbus_get_default(), id);
|
||||
if (NULL == dev) {
|
||||
if (!dev) {
|
||||
error_set(errp, QERR_DEVICE_NOT_FOUND, id);
|
||||
return;
|
||||
}
|
||||
|
@ -4121,7 +4121,7 @@ void qmp_chardev_remove(const char *id, Error **errp)
|
||||
CharDriverState *chr;
|
||||
|
||||
chr = qemu_chr_find(id);
|
||||
if (NULL == chr) {
|
||||
if (chr == NULL) {
|
||||
error_setg(errp, "Chardev '%s' not found", id);
|
||||
return;
|
||||
}
|
||||
|
@ -732,7 +732,7 @@ int unix_connect_opts(QemuOpts *opts, Error **errp,
|
||||
ConnectState *connect_state = NULL;
|
||||
int sock, rc;
|
||||
|
||||
if (NULL == path) {
|
||||
if (path == NULL) {
|
||||
error_setg(errp, "unix connect: no path specified");
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user