typedef struct {
int s;
...
char* temp_status;
...
} param;

pararm MQK;
MQK.temp_status = (char*) malloc(sizeof(char)*14);

...

free(&(MQK.temp_status));    <<< ERROR


错误报告

gcc ...
csim.c: In function ‘main’:
csim.c:348:9: error: attempt to free a non-heap object ‘MQK’ [-  Werror=free-nonheap-object]
 free(&(MQK.temp_status));
     ^
cc1: all warnings being treated as errors


我应该如何释放它?我必须free()堆栈分配结构的malloc()属性。

最佳答案

MQK.temp_status是一个char指针。您为它分配内存,就可以释放它

free(MQK.temp_status);


我应该对吗?

每个指针都有一个地址。而且您无法释放该地址&MQK.temp_status

10-06 07:43