zebra: clean up coverity warning in opaque api

Seems a bit fussy of coverity, but ... don't NULL a variable
unnecessarily.

Signed-off-by: Mark Stapp <mjs@labn.net>
This commit is contained in:
Mark Stapp 2023-06-26 13:19:23 -04:00
parent 4262dc3bd8
commit 0ee56dd332

View file

@ -546,7 +546,6 @@ static void opq_send_notifications(const struct opq_msg_reg *reg,
client->session_id, msg)) { client->session_id, msg)) {
/* Error - need to free the message */ /* Error - need to free the message */
stream_free(msg); stream_free(msg);
msg = NULL;
} }
} }
} }