mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-05 13:18:20 +03:00
cleanup: use NULL for pointer reset
This commit is contained in:
parent
b714c7ebc6
commit
c7b2c08a6b
@ -372,14 +372,13 @@ int daemon_talk(struct dm_event_fifos *fifos,
|
|||||||
if (!_daemon_write(fifos, msg)) {
|
if (!_daemon_write(fifos, msg)) {
|
||||||
stack;
|
stack;
|
||||||
dm_free(msg->data);
|
dm_free(msg->data);
|
||||||
msg->data = 0;
|
msg->data = NULL;
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
|
||||||
dm_free(msg->data);
|
dm_free(msg->data);
|
||||||
msg->data = 0;
|
msg->data = NULL;
|
||||||
|
|
||||||
if (!_daemon_read(fifos, msg)) {
|
if (!_daemon_read(fifos, msg)) {
|
||||||
stack;
|
stack;
|
||||||
|
Loading…
Reference in New Issue
Block a user