We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b8c4586 + 4353b81 commit 697b657Copy full SHA for 697b657
zebra/zebra_pw.c
@@ -205,9 +205,11 @@ void zebra_pw_handle_dplane_results(struct zebra_dplane_ctx *ctx)
205
vrf = zebra_vrf_lookup_by_id(dplane_ctx_get_vrf(ctx));
206
pw = zebra_pw_find(vrf, dplane_ctx_get_ifname(ctx));
207
208
+ if (!pw)
209
+ return;
210
+
211
if (dplane_ctx_get_status(ctx) != ZEBRA_DPLANE_REQUEST_SUCCESS) {
- if (pw)
- zebra_pw_install_failure(pw, dplane_ctx_get_pw_status(ctx));
212
+ zebra_pw_install_failure(pw, dplane_ctx_get_pw_status(ctx));
213
} else {
214
if (op == DPLANE_OP_PW_INSTALL && pw->status != PW_FORWARDING)
215
zebra_pw_update_status(pw, PW_FORWARDING);
0 commit comments