diff options
| author | Mark Stapp <mstapp@nvidia.com> | 2022-02-08 15:57:57 -0500 |
|---|---|---|
| committer | Mark Stapp <mstapp@nvidia.com> | 2022-02-08 15:57:57 -0500 |
| commit | b6b6e59c6ea0a00a73862d8f40d8b5745350f7e5 (patch) | |
| tree | 5ddccf5ccb42e033b822b2d4a1761a5cb0120203 /zebra/zebra_dplane.c | |
| parent | 8dd61ca240ca0c95b6b05d6050f2c2c726219631 (diff) | |
zebra: use frr mem apis
Replace a couple of strdup/free with XSTRDUP/XFREE.
Signed-off-by: Mark Stapp <mstapp@nvidia.com>
Diffstat (limited to 'zebra/zebra_dplane.c')
| -rw-r--r-- | zebra/zebra_dplane.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zebra/zebra_dplane.c b/zebra/zebra_dplane.c index 656ebcf3b7..4684535d49 100644 --- a/zebra/zebra_dplane.c +++ b/zebra/zebra_dplane.c @@ -722,7 +722,7 @@ static void dplane_ctx_free_internal(struct zebra_dplane_ctx *ctx) /* Maybe free label string, if allocated */ if (ctx->u.intf.label != NULL && ctx->u.intf.label != ctx->u.intf.label_buf) { - free(ctx->u.intf.label); + XFREE(MTYPE_DP_CTX, ctx->u.intf.label); ctx->u.intf.label = NULL; } break; @@ -1843,7 +1843,7 @@ void dplane_ctx_set_intf_label(struct zebra_dplane_ctx *ctx, const char *label) DPLANE_CTX_VALID(ctx); if (ctx->u.intf.label && ctx->u.intf.label != ctx->u.intf.label_buf) - free(ctx->u.intf.label); + XFREE(MTYPE_DP_CTX, ctx->u.intf.label); ctx->u.intf.label = NULL; @@ -1858,7 +1858,7 @@ void dplane_ctx_set_intf_label(struct zebra_dplane_ctx *ctx, const char *label) sizeof(ctx->u.intf.label_buf)); ctx->u.intf.label = ctx->u.intf.label_buf; } else { - ctx->u.intf.label = strdup(label); + ctx->u.intf.label = XSTRDUP(MTYPE_DP_CTX, label); } } else { ctx->u.intf.flags &= ~DPLANE_INTF_HAS_LABEL; @@ -3694,7 +3694,7 @@ static enum zebra_dplane_result intf_addr_update_internal( sizeof(ctx->u.intf.label_buf)); ctx->u.intf.label = ctx->u.intf.label_buf; } else { - ctx->u.intf.label = strdup(ifc->label); + ctx->u.intf.label = XSTRDUP(MTYPE_DP_CTX, ifc->label); } } |
