aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/vendorcode/cavium/bdk/libbdk-hal/bdk-qlm.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/vendorcode/cavium/bdk/libbdk-hal/bdk-qlm.c b/src/vendorcode/cavium/bdk/libbdk-hal/bdk-qlm.c
index f7d631fb5b..b9552d4052 100644
--- a/src/vendorcode/cavium/bdk/libbdk-hal/bdk-qlm.c
+++ b/src/vendorcode/cavium/bdk/libbdk-hal/bdk-qlm.c
@@ -362,9 +362,12 @@ int bdk_qlm_eye_display(bdk_node_t node, int qlm, int qlm_lane, int format, cons
bdk_error("Failed to allocate space for eye\n");
return -1;
}
- if (bdk_qlm_eye_capture(node, qlm, qlm_lane, eye_data))
- return -1;
+ if (bdk_qlm_eye_capture(node, qlm, qlm_lane, eye_data)) {
+ free(eye_data);
+ return -1;
+ }
eye = eye_data;
+ need_free = 1;
}
/* Calculate the max eye width */