代码拉取完成,页面将自动刷新
同步操作将从 src-openEuler/ipmitool 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
From 08348f1b72de27681549894f7a506674fba19ff2 Mon Sep 17 00:00:00 2001
From: Alexander Amelkin <alexander@amelkin.msk.ru>
Date: Wed, 20 Feb 2019 14:56:37 +0300
Subject: [PATCH 114/119] Refactor free_n() function
Make the argument to free_n() compatible with any pointers,
thus reducing the number of compilation warnings.
End-user-impact: None
Signed-off-by: Alexander Amelkin <alexander@amelkin.msk.ru>
---
include/ipmitool/helper.h | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/include/ipmitool/helper.h b/include/ipmitool/helper.h
index c03c931..0d4f6e3 100644
--- a/include/ipmitool/helper.h
+++ b/include/ipmitool/helper.h
@@ -37,6 +37,7 @@
#include <inttypes.h>
#include <stdio.h>
#include <string.h>
+#include <stdlib.h> /* For free() */
#ifndef TRUE
#define TRUE 1
@@ -115,10 +116,11 @@ uint16_t ipmi_get_oem_id(struct ipmi_intf *intf);
* Free the memory and clear the pointer.
* @param[in] ptr - a pointer to your pointer to free.
*/
-static inline void free_n(void **ptr) {
- if (ptr && *ptr) {
- free(*ptr);
- *ptr = NULL;
+static inline void free_n(void *ptr) {
+ void **pptr = (void **)ptr;
+ if (pptr && *pptr) {
+ free(*pptr);
+ *pptr = NULL;
}
}
--
2.19.1
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。