diff options
| author | lijia <[email protected]> | 2021-10-30 21:49:05 +0800 |
|---|---|---|
| committer | lijia <[email protected]> | 2021-10-30 21:49:05 +0800 |
| commit | b6f22dc290e710dc22a00200a6fb7cf91ac1f86e (patch) | |
| tree | c7586752b60a0a92a5e75490aa7c8ada1b54f9f1 | |
| parent | 455b2def86141d28277b29424916ec9e0252d3d3 (diff) | |
TSG-8253, 修复双臂模式申请/释放内存接口不一致问题.v4.2.58
| -rw-r--r-- | src/packet_io/packet_io_marsio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/packet_io/packet_io_marsio.c b/src/packet_io/packet_io_marsio.c index 82d4d50..bd98f34 100644 --- a/src/packet_io/packet_io_marsio.c +++ b/src/packet_io/packet_io_marsio.c @@ -219,7 +219,7 @@ int marsio_dl_io_set_capdev_serial(const char *up_dev, const char *down_dev) return -1; } - free(save_mem_ptr); + SAPP_GLOBAL_FREE(save_mem_ptr); return 0; } |
